本文整理匯總了PHP中gpOutput::PrepGadgetContent方法的典型用法代碼示例。如果您正苦於以下問題:PHP gpOutput::PrepGadgetContent方法的具體用法?PHP gpOutput::PrepGadgetContent怎麽用?PHP gpOutput::PrepGadgetContent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gpOutput
的用法示例。
在下文中一共展示了gpOutput::PrepGadgetContent方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Response
/**
* Handle HTTP responses made with $_REQUEST['req'] = json (when <a ... data-cmd="gpajax">)
* Sends JSON object to client
*
*/
static function Response()
{
global $page;
if (!is_array($page->ajaxReplace)) {
die;
}
if (!isset($_REQUEST['jsoncallback'])) {
die('Invalid Request: jsoncallback not set');
}
//gadgets may be using gpajax/json request/responses
gpOutput::TemplateSettings();
gpOutput::PrepGadgetContent();
echo gpAjax::Callback($_REQUEST['jsoncallback']);
echo '([';
//output content
if (!empty($_REQUEST['gpx_content'])) {
switch ($_REQUEST['gpx_content']) {
case 'gpabox':
gpAjax::JsonDo('admin_box_data', '', $page->contentBuffer);
break;
}
} elseif (in_array('#gpx_content', $page->ajaxReplace)) {
$replace_id = '#gpx_content';
if (isset($_GET['gpreqarea'])) {
$replace_id = '#' . $_GET['gpreqarea'];
}
ob_start();
$page->GetGpxContent(true);
$content = ob_get_clean();
gpAjax::JsonDo('replace', $replace_id, $content);
}
//other areas
foreach ($page->ajaxReplace as $arguments) {
if (is_array($arguments)) {
$arguments += array(0 => '', 1 => '', 2 => '');
gpAjax::JsonDo($arguments[0], $arguments[1], $arguments[2]);
}
}
//always send messages
ob_start();
echo GetMessages(false);
$content = ob_get_clean();
if (!empty($content)) {
gpAjax::JsonDo('messages', '', $content);
}
echo ']);';
die;
}
示例2: GetHead
/**
* Generate and output the <head> portion of the html document
*
*/
static function GetHead()
{
gpPlugin::Action('GetHead');
gpOutput::PrepGadgetContent();
echo '<!-- get_head_placeholder ' . gp_random . ' -->';
}