_init('blog/post'); } public function load($id, $field = null) { return $post = parent::load($id, $field); } public function noRoutePage() { $this->setData($this->load(self::NOROUTE_PAGE_ID, $this->getIdFieldName())); return $this; } public function getShortContent() { $content = $this->getData('short_content'); if (Mage::getStoreConfig(AW_Blog_Helper_Config::XML_BLOG_PARSE_CMS)) { $processor = Mage::getModel('core/email_template_filter'); $content = $processor->filter($content); } return $content; } public function getPostContent() { $content = $this->getData('post_content'); if (Mage::getStoreConfig(AW_Blog_Helper_Config::XML_BLOG_PARSE_CMS)) { $processor = Mage::getModel('core/email_template_filter'); $content = $processor->filter($content); } return $content; } public function getCategoriesForPosts($posts = array()) { return $this->getResource()->getCategoriesForPost($posts); } public function loadByIdentifier($v) { return $this->load($v, 'identifier'); } public function getCats() { $route = Mage::getStoreConfig('blog/blog/route'); if ($route == "") { $route = "blog"; } $route = Mage::getUrl($route); $cats = Mage::getModel('blog/cat')->getCollection() ->addPostFilter($this->getId()) ->addStoreFilter(Mage::app()->getStore()->getId()) ; $catUrls = array(); foreach ($cats as $cat) { $catUrls[$cat->getTitle()] = $route . "cat/" . $cat->getIdentifier(); } return $catUrls; } }