本文整理汇总了PHP中gpOutput::ExtraContent方法的典型用法代码示例。如果您正苦于以下问题:PHP gpOutput::ExtraContent方法的具体用法?PHP gpOutput::ExtraContent怎么用?PHP gpOutput::ExtraContent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gpOutput
的用法示例。
在下文中一共展示了gpOutput::ExtraContent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: SectionEdit
/**
* Perform various section editing commands
*
*/
function SectionEdit($cmd)
{
global $page, $langmessage;
if (empty($_REQUEST['file'])) {
message($langmessage['OOPS']);
return false;
}
$page->ajaxReplace = array();
$file = gp_edit::CleanTitle($_REQUEST['file']);
$data = gpOutput::ExtraContent($file, $file_stats);
$page->file_sections = array($data);
//hack so the SaveSection filter works
$page->file_stats = $file_stats;
if (!gp_edit::SectionEdit($cmd, $data, 0, '', $file_stats)) {
return;
}
//save the new content
$file_full = $this->folder . '/' . $file . '.php';
if (!gpFiles::SaveData($file_full, 'extra_content', $data)) {
message($langmessage['OOPS']);
$this->EditExtra();
return false;
}
$page->ajaxReplace[] = array('ck_saved', '', '');
message($langmessage['SAVED']);
$this->areas[$file] = $file;
$this->EditExtra();
return true;
}