本文整理汇总了PHP中GoogleSitemapGenerator::DeleteOldFiles方法的典型用法代码示例。如果您正苦于以下问题:PHP GoogleSitemapGenerator::DeleteOldFiles方法的具体用法?PHP GoogleSitemapGenerator::DeleteOldFiles怎么用?PHP GoogleSitemapGenerator::DeleteOldFiles使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GoogleSitemapGenerator
的用法示例。
在下文中一共展示了GoogleSitemapGenerator::DeleteOldFiles方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: HtmlShowOptionsPage
//.........这里部分代码省略.........
}
}
}
}
}
//Apply page changes from POST
$this->sg->SetPages($this->HtmlApplyPages());
if ($this->sg->SaveOptions()) {
$message .= __('Configuration updated', 'sitemap') . "<br />";
} else {
$message .= __('Error while saving options', 'sitemap') . "<br />";
}
if ($this->sg->SavePages()) {
$message .= __("Pages saved", 'sitemap') . "<br />";
} else {
$message .= __('Error while saving pages', 'sitemap') . "<br />";
}
} else {
if (!empty($_POST["sm_reset_config"])) {
//Pressed Button: Reset Config
check_admin_referer('sitemap');
$this->sg->InitOptions();
$this->sg->SaveOptions();
$message .= __('The default configuration was restored.', 'sitemap');
} else {
if (!empty($_GET["sm_delete_old"])) {
//Delete old sitemap files
check_admin_referer('sitemap');
//Check again, just for the case that something went wrong before
if (!current_user_can("administrator")) {
echo '<p>Please log in as admin</p>';
return;
}
if (!$this->sg->DeleteOldFiles()) {
$message = __("The old files could NOT be deleted. Please use an FTP program and delete them by yourself.", "sitemap");
} else {
$message = __("The old files were successfully deleted.", "sitemap");
}
}
}
}
}
//Print out the message to the user, if any
if ($message != "") {
?>
<div class="updated"><strong><p><?php
echo $message;
?>
</p></strong></div><?php
}
if (!$snl) {
if (isset($_GET['sm_hidedonate'])) {
$this->sg->SetOption('i_hide_donated', true);
$this->sg->SaveOptions();
}
if (isset($_GET['sm_donated'])) {
$this->sg->SetOption('i_donated', true);
$this->sg->SaveOptions();
}
if (isset($_GET['sm_hide_note'])) {
$this->sg->SetOption('i_hide_note', true);
$this->sg->SaveOptions();
}
if (isset($_GET['sm_hidedonors'])) {
$this->sg->SetOption('i_hide_donors', true);
$this->sg->SaveOptions();