本文整理汇总了PHP中Administration::getPageCallback方法的典型用法代码示例。如果您正苦于以下问题:PHP Administration::getPageCallback方法的具体用法?PHP Administration::getPageCallback怎么用?PHP Administration::getPageCallback使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Administration
的用法示例。
在下文中一共展示了Administration::getPageCallback方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<?php
require_once(EXTENSIONS . '/cdi/lib/class.cdiutil.php');
require_once(EXTENSIONS . '/cdi/lib/class.cdislave.php');
// We should not be processing any queries when the extension is disabled or when we are the Master instance
if((!class_exists('Administration')) || !CdiUtil::isEnabled() || (CdiUtil::isCdiMaster() || CdiUtil::isCdiDBSync())) {
echo "WARNING: You are not calling this page from Symphony, the CDI extension is disabled or you are running the queryies on the Master instance. No queries have been executed.";
} else {
$callback = Administration::getPageCallback();
if(Symphony::Configuration()->get('api_key','cdi') !== $callback['context'][0]){
echo "WARNING: Invalid API key. The correct key can be found in the configuration page.";
die();
}
else{
CdiSlave::update();
}
}
die();