0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.7.0.2-6
/
standard
/
htdocs
/
app
/
code
/
core
/
Mage
/
Cms
/
Model
/
[
Home
]
File: Block.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. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * * @category Mage * @package Mage_Cms * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * CMS block model * * @method Mage_Cms_Model_Resource_Block _getResource() * @method Mage_Cms_Model_Resource_Block getResource() * @method string getTitle() * @method Mage_Cms_Model_Block setTitle(string $value) * @method string getIdentifier() * @method Mage_Cms_Model_Block setIdentifier(string $value) * @method string getContent() * @method Mage_Cms_Model_Block setContent(string $value) * @method string getCreationTime() * @method Mage_Cms_Model_Block setCreationTime(string $value) * @method string getUpdateTime() * @method Mage_Cms_Model_Block setUpdateTime(string $value) * @method int getIsActive() * @method Mage_Cms_Model_Block setIsActive(int $value) * * @category Mage * @package Mage_Cms * @author Magento Core Team <core@magentocommerce.com> */ class Mage_Cms_Model_Block extends Mage_Core_Model_Abstract { const CACHE_TAG = 'cms_block'; protected $_cacheTag= 'cms_block'; protected function _construct() { $this->_init('cms/block'); } /** * Prevent blocks recursion * * @throws Mage_Core_Exception * @return Mage_Core_Model_Abstract */ protected function _beforeSave() { $needle = 'block_id="' . $this->getBlockId() . '"'; if (false == strstr($this->getContent(), $needle)) { return parent::_beforeSave(); } Mage::throwException( Mage::helper('cms')->__('The static block content cannot contain directive with its self.') ); } }