| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/community/AsiaConnect/FreeCms/Helper/ |
Upload File : |
<?php
class AsiaConnect_FreeCms_Helper_Page extends Mage_Core_Helper_Abstract
{
public function renderPage(Mage_Core_Controller_Front_Action $action, $pageId=null)
{
$page = Mage::getSingleton('cms/page');
if (!is_null($pageId) && $pageId!==$page->getId()) {
$page->setStoreId(Mage::app()->getStore()->getId());
if (!$page->load($pageId)) {
return false;
}
}
if (!$page->getId()) {
return false;
}
if ($page->getCustomTheme()) {
$apply = true;
$today = Mage::app()->getLocale()->date()->toValue();
if (($from = $page->getCustomThemeFrom()) && strtotime($from)>$today) {
$apply = false;
}
if ($apply && ($to = $page->getCustomThemeTo()) && strtotime($to)<$today) {
$apply = false;
}
if ($apply) {
list($package, $theme) = explode('/', $page->getCustomTheme());
Mage::getSingleton('core/design_package')
->setPackageName($package)
->setTheme($theme);
}
}
$action->loadLayout(array('default', 'cms_page'), false, false);
$action->getLayout()->getUpdate()->addUpdate($page->getLayoutUpdateXml());
$action->generateLayoutXml()->generateLayoutBlocks();
if ($storage = Mage::getSingleton('catalog/session')) {
$action->getLayout()->getMessagesBlock()->addMessages($storage->getMessages(true));
}
if ($storage = Mage::getSingleton('checkout/session')) {
$action->getLayout()->getMessagesBlock()->addMessages($storage->getMessages(true));
}
$action->renderLayout();
return true;
}
}