0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.1.3-2
/
standard
/
htdocs
/
app
/
code
/
core
/
Mage
/
Cms
/
Controller
/
[
Home
]
File: Router.php
<?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magentocommerce.com so we can send you a copy immediately. * * @category Mage * @package Mage_Cms * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ class Mage_Cms_Controller_Router extends Mage_Core_Controller_Varien_Router_Abstract { public function initControllerRouters($observer) { $front = $observer->getEvent()->getFront(); $cms = new Mage_Cms_Controller_Router(); $front->addRouter('cms', $cms); } public function match(Zend_Controller_Request_Http $request) { if (!Mage::app()->isInstalled()) { Mage::app()->getFrontController()->getResponse() ->setRedirect(Mage::getUrl('install')) ->sendResponse(); exit; } $identifier = trim($request->getPathInfo(), '/'); $page = Mage::getSingleton('cms/page'); $page->setStoreId(Mage::app()->getStore()->getId()); if (!$page->load($identifier)->getId()) { return false; } $request->setModuleName(isset($d[0]) ? $d[0] : 'cms') ->setControllerName(isset($d[1]) ? $d[1] : 'page') ->setActionName(isset($d[2]) ? $d[2] : 'view') ->setParam('page_id', $page->getId()); return true; } }