當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Sitemap::instance方法代碼示例

本文整理匯總了PHP中Sitemap::instance方法的典型用法代碼示例。如果您正苦於以下問題:PHP Sitemap::instance方法的具體用法?PHP Sitemap::instance怎麽用?PHP Sitemap::instance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Sitemap的用法示例。


在下文中一共展示了Sitemap::instance方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: instance

 /**
  * create an instance of Sitemap_Base using sitemap
  *
  * @return void
  * @author Andy Bennett
  */
 public static function instance()
 {
     if (self::$instance == NULL) {
         self::$instance = Sitemap_Base::factory('sitemap');
     }
     return self::$instance;
 }
開發者ID:AsteriaGamer,項目名稱:steamdriven-kohana,代碼行數:13,代碼來源:Sitemap.php

示例2: getInstance

 public static function getInstance()
 {
     if (!self::$instance && !is_object(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }
開發者ID:sdgdsffdsfff,項目名稱:shell_nginx_log,代碼行數:7,代碼來源:Sitemap.php

示例3: get_pages

 /**
  * get a list of pages
  *
  * @return void
  * @author Andy Bennett
  */
 public function get_pages()
 {
     $map = Sitemap::instance()->get_sitemap();
     $pages = $map->xpath('/root//item');
     $arr = array();
     foreach ($pages as $page) {
         $tmp = new stdClass();
         $tmp->id = (string) $page->name;
         $tmp->title = (string) $page->title;
         $arr[] = $tmp;
     }
     return $arr;
 }
開發者ID:AsteriaGamer,項目名稱:steamdriven-kohana,代碼行數:19,代碼來源:imagemap_helper.php

示例4: index

    /**
     * simple test to show navigation
     *
     * @return void
     * @author Andy Bennett
     */
    public function index()
    {
        echo '<style type="text/css" media="screen">
			    ul { clear: left; background: #ccc; height: 30px; }
			    li { list-style: none; float: left; line-height: 30px; height: 30px; }
			    li.current { background: white; color: red; }
			    li span { margin-top: 5px; display: block; border-right: 1px solid red; line-height: 16px; padding: 2px 1em; }
			    li.last span { border-right: none; }
			    li a { color: black; text-decoration: none; }
			    li a:hover { text-decoration: underline; }
			</style>';
        echo Sitemap::instance()->navigation(2, 0);
    }
開發者ID:AsteriaGamer,項目名稱:steamdriven-kohana,代碼行數:19,代碼來源:sitemap_test.php

示例5: index

 function index()
 {
     Sitemap::instance()->google();
 }
開發者ID:AsteriaGamer,項目名稱:steamdriven-kohana,代碼行數:4,代碼來源:sitemap.php

示例6: save

 /**
  * pass the edited tree to the sitemap to be saved
  *
  * @return void
  * @author Andy Bennett
  */
 public function save()
 {
     $tree = Input::instance()->post('tree');
     $xml_string = tree_helper::return_xml_string($tree);
     echo Sitemap::instance()->save_sitemap($xml_string) ? 'Saved successfully' : 0;
 }
開發者ID:AsteriaGamer,項目名稱:steamdriven-kohana,代碼行數:12,代碼來源:tree.php


注:本文中的Sitemap::instance方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。