本文整理汇总了PHP中app\Board::fixPostsTotal方法的典型用法代码示例。如果您正苦于以下问题:PHP Board::fixPostsTotal方法的具体用法?PHP Board::fixPostsTotal怎么用?PHP Board::fixPostsTotal使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Board
的用法示例。
在下文中一共展示了Board::fixPostsTotal方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: importInfinity
/**
* Imports the Infinity database.
*
* @return void
*/
public function importInfinity()
{
$file = storage_path("infinity.import");
$state = $this->getImportState();
switch ($state) {
case null:
case "":
case "boards":
case "users":
file_put_contents($file, "boards");
$this->importInfinityRolesAndBoards();
case "assets":
file_put_contents($file, "assets");
$this->importInfinityBoardAssets();
case "config":
file_put_contents($file, "config");
$this->importInfinityBoardConfig();
case "pages":
file_put_contents($file, "pages");
$this->importInfinityBoardPages();
case "tags":
file_put_contents($file, "tags");
$this->importInfinityBoardTags();
case "posts":
file_put_contents($file, "posts");
$this->importInfinityBoardPosts();
case "passwords":
file_put_contents($file, "passwords");
$this->importInfinityPasswords();
break;
default:
$this->error("Import state \"{$state}\" invalid.");
}
Board::fixPostsTotal();
}