当前位置: 首页>>代码示例>>PHP>>正文


PHP PDF_Common::post方法代码示例

本文整理汇总了PHP中PDF_Common::post方法的典型用法代码示例。如果您正苦于以下问题:PHP PDF_Common::post方法的具体用法?PHP PDF_Common::post怎么用?PHP PDF_Common::post使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PDF_Common的用法示例。


在下文中一共展示了PDF_Common::post方法的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;
             }
         }
     }
 }
开发者ID:Ezyva2015,项目名称:SMSF-Academy-Wordpress,代码行数:45,代码来源:pdf-settings.php


注:本文中的PDF_Common::post方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。