1234567891011121314151617181920212223242526 |
- <?php
- defined('IN_PHPCMS') or exit('No permission resources.');
- pc_base::load_sys_class('model', '', 0);
- class googlesitemap_item_model extends model {
- public function __construct() {
- $this->items = array();
- parent::__construct();
- }
-
- /**
- *@access public
- *@param string $loc 位置
- *@param string $lastmod 日期格式 YYYY-MM-DD
- *@param string $changefreq 更新频率的单位 (always, hourly, daily, weekly, monthly, yearly, never)
- *@param string $priority 更新频率 0-1
- */
- function google_sitemap_item($loc, $lastmod = '', $changefreq = '', $priority = '')
- {
- $this->loc = $loc;
- $this->lastmod = $lastmod;
- $this->changefreq = $changefreq;
- $this->priority = $priority;
- }
-
- }
- ?>
|