本文整理汇总了PHP中Sitemap::updatePage方法的典型用法代码示例。如果您正苦于以下问题:PHP Sitemap::updatePage方法的具体用法?PHP Sitemap::updatePage怎么用?PHP Sitemap::updatePage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sitemap
的用法示例。
在下文中一共展示了Sitemap::updatePage方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: move
public function move($id, $to)
{
try {
$aDocument = Sitemap_Sample::get($id);
if (empty($aDocument['document_name'])) {
throw new Exception('Requested id isn`t document');
}
Sitemap::updatePage($aDocument['document_name'], $aDocument['document_id'], $aDocument['name'], $aDocument['url_key'], $to);
Sitemap::updateParentCount($aDocument['parent']);
Sitemap::updateParentCount($to);
// Если у переносимого документа есть дочерние элементы
$child = Sitemap_Sample::selectChild($aDocument['id']);
if (!empty($child)) {
foreach ($child as $row) {
Sitemap_RestoreUrl::restoreOne($row['id'], $aDocument);
}
}
$this->addAlert('Документ перемещен');
} catch (Exception $e) {
$this->addError('Ошибка при перемещении документа');
}
$this->jumpBack();
}
示例2: testUpdateDocument
/**
* Тестируем обновление документа
*/
public function testUpdateDocument()
{
$nId = Sitemap::addPage('Test inserting', 'xx', TestDocument::ModelName, 1, 0);
Sitemap::updatePage(TestDocument::ModelName, 1, 'Test updating', 'xxx', 0);
$urlInfo = Sitemap_Sample::get($nId);
$this->assertEquals($urlInfo['full_url'], '///xxx/');
$this->assertEquals($urlInfo['name'], 'Test updating');
}
示例3: update
public function update()
{
if ($this->withSitemap) {
// Получаем сайтмап данные
$this->needSitemapData();
$sitemapInfo = $this->returnSitemapParams();
Sitemap::updatePage(static::ModelName, $this->id->getValue(), $this->name->getValue(), $sitemapInfo['url_key'], $this->sitemapInfo['parent']);
// Очищаем текущие сайтмап данные и обновлеяем их
$this->sitemapInfo = null;
$this->needSitemapData();
}
// Обновляем
return parent::update();
}