本文整理汇总了PHP中PDF_Common::get方法的典型用法代码示例。如果您正苦于以下问题:PHP PDF_Common::get方法的具体用法?PHP PDF_Common::get怎么用?PHP PDF_Common::get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PDF_Common
的用法示例。
在下文中一共展示了PDF_Common::get方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run_setting_routing
protected function run_setting_routing()
{
global $gfpdfe_data;
/*
* Check if we need to redeploy default PDF templates/styles to the theme folder
*/
if (rgpost("gfpdf_deploy") && (wp_verify_nonce(PDF_Common::post('gfpdf_deploy_nonce'), 'gfpdf_deploy_nonce_action') || wp_verify_nonce(PDF_Common::get('_wpnonce'), 'pdf-extended-filesystem'))) {
/*
* Check if the user wants to upgrade the system or only initialise the fonts
*/
if (PDF_Common::post('font-initialise')) {
/*
* We only want to reinitialise the font files and configuration
*/
if (GFPDF_InstallUpdater::initialise_fonts() === false) {
return true;
}
} else {
if (rgpost('upgrade')) {
/*
* Deploy new template styles
* If we get false returned Wordpress is trying to get
* access details to update files so don't display anything.
*/
if (self::deploy() === 'false') {
return true;
}
}
}
}
/*
* Check if we need to sync the theme folders because a user changes theme
* Sniff the _wpnonce values to determine this.
*/
if (isset($_GET['_wpnonce'])) {
/*
* Check if we want to copy the theme files
*/
if ((is_dir($gfpdfe_data->old_template_location) || is_dir($gfpdfe_data->old_3_6_template_site_location)) && wp_verify_nonce(PDF_Common::get('_wpnonce'), 'gfpdfe_migrate')) {
if (GFPDF_InstallUpdater::run_template_migration() === 'false') {
return true;
}
}
}
}