本文整理匯總了PHP中Editor::addCopyResolver方法的典型用法代碼示例。如果您正苦於以下問題:PHP Editor::addCopyResolver方法的具體用法?PHP Editor::addCopyResolver怎麽用?PHP Editor::addCopyResolver使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Editor
的用法示例。
在下文中一共展示了Editor::addCopyResolver方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: install_one
/**
* Install only this mod
*
* @param string $phpbb phpBB root
*/
public function install_one($phpbb)
{
// Don't let install mods to non-phpBB
if (!$this->test_phpbb($phpbb)) {
throw new NotPhpbb('phpBB not found');
}
$editor = new Editor($phpbb);
foreach ($this->copyresolvers as $test)
{
$editor->addCopyResolver($test);
}
try
{
// Perform copy action
foreach ($this->actions['copy'] as $file)
{
$editor->copy($file['from'], $file['to']);
}
// Perform delete action
foreach ($this->actions['delete'] as $file)
{
$editor->delete($file);
}
// Perform edits
foreach ($this->actions['edit'] as $file => $edits)
{
$editor->file_open($file);
foreach ($edits as $edit)
{
$this->do_edit($editor, $edit);
}
$editor->file_close();
}
// Perform sql queries
foreach ($this->actions['sql'] as $dbms => $queries)
{
foreach ($queries as $query)
{
$editor->sql($query, $dbms);
}
}
// Perform sql queries
if (!empty($this->actions['installer'])) {
$editor->installer($this->actions['installer']);
}
}
catch (EditorException $e)
{
throw new InstallFailed("Editor exception", 0, $e);
}
$editor->commit_changes();
}