当前位置: 首页>>代码示例>>PHP>>正文


PHP Cache::getInstance方法代码示例

本文整理汇总了PHP中Pimcore\Model\Cache::getInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP Cache::getInstance方法的具体用法?PHP Cache::getInstance怎么用?PHP Cache::getInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Pimcore\Model\Cache的用法示例。


在下文中一共展示了Cache::getInstance方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: portletFeedAction

 public function portletFeedAction()
 {
     $dashboard = $this->getCurrentConfiguration();
     $id = $this->getParam("id");
     $cache = \Pimcore\Model\Cache::getInstance();
     if ($cache) {
         $cache->setLifetime(10);
         \Zend_Feed_Reader::setCache($cache);
     }
     $portlet = array();
     foreach ($dashboard["positions"] as $col) {
         foreach ($col as $row) {
             if ($row['id'] == $id) {
                 $portlet = $row;
             }
         }
     }
     $feedUrl = $portlet['config'];
     $feed = null;
     if (!empty($feedUrl)) {
         try {
             $feed = \Zend_Feed_Reader::import($feedUrl);
         } catch (\Exception $e) {
             \Logger::error($e);
         }
     }
     $count = 0;
     $entries = array();
     if ($feed) {
         foreach ($feed as $entry) {
             // display only the latest 11 entries
             $count++;
             if ($count > 10) {
                 break;
             }
             $entry = array("title" => $entry->getTitle(), "description" => $entry->getDescription(), 'authors' => $entry->getAuthors(), 'link' => $entry->getLink(), 'content' => $entry->getContent());
             foreach ($entry as &$content) {
                 $content = strip_tags($content, "<h1><h2><h3><h4><h5><p><br><a><img><div><b><strong><i>");
                 $content = preg_replace('/on([a-z]+)([ ]+)?=/i', "data-on\$1=", $content);
             }
             $entries[] = $entry;
         }
     }
     $this->_helper->json(array("entries" => $entries));
 }
开发者ID:yonetici,项目名称:pimcore-coreshop-demo,代码行数:45,代码来源:PortalController.php


注:本文中的Pimcore\Model\Cache::getInstance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。