class SitemapPlugin extends Plugin
{
- const USERS_PER_MAP = 25000;
+ const USERS_PER_MAP = 25000;
+ const NOTICES_PER_MAP = 25000;
/**
* Load related modules when needed
class NoticesitemapAction extends SitemapAction
{
- const NOTICES_PER_MAP = 25000;
-
var $notice = null;
function prepare($args)
$d += 0;
$i += 0;
- $offset = ($i-1) * self::NOTICES_PER_MAP;
- $limit = self::NOTICES_PER_MAP;
+ $offset = ($i-1) * SitemapPlugin::NOTICES_PER_MAP;
+ $limit = SitemapPlugin::NOTICES_PER_MAP;
$this->notice = new Notice();