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


PHP module_security::page_denied_message方法代码示例

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


在下文中一共展示了module_security::page_denied_message方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: render_page_finished

 public static function render_page_finished()
 {
     if (self::$page_denied) {
         self::$page_denied = false;
         $null = ob_get_clean();
         // remove page content.
         echo self::$page_denied_message;
         self::$page_denied_message = '';
     } else {
         if (self::$process_editable_page) {
             module_debug::log(array('title' => 'Page Editable', 'file' => 'includes/plugin_security/security.php', 'data' => "User doesn't have edit permissions, time to remove all form elements."));
             self::$process_editable_page = false;
             $editable_content = ob_get_clean();
             //ob_clean();
             //$editable_content = preg_replace('#</?form[^>]*>#imsU','',$editable_content);
             //$editable_content = preg_replace('#<input[^>]*type="submit"[^>]*>#imsU','',$editable_content);
             //$editable_content = preg_replace('#<input[^>]*type="button"[^>]*>#imsU','',$editable_content);
             //$editable_content = preg_replace('#<input[^>]*type="radio"[^>]*>#imsU','',$editable_content);
             //$editable_content = preg_replace('#<input[^>]*type="hidden"[^>]*>#imsU','',$editable_content);
             // check if this is bad: disabling script. eg: file edit screen.
             //$editable_content = preg_replace('#<script[^>]*>.*</script>#imsU','',$editable_content);
             $editable_content = preg_replace('#<a[^>]+ui-icon-help[^>]*>[^<]*</a>#imsU', '', $editable_content);
             $editable_content = preg_replace('#<span[^>]class="button"[^>]*>.*</span>#imsU', '', $editable_content);
             if (preg_match_all('#<input[^>]*type="text"[^>]*>#imsU', $editable_content, $matches)) {
                 foreach ($matches[0] as $match) {
                     if (strpos($match, 'no_permissions') === false) {
                         $replace_with = '';
                         if (preg_match('#value="([^"]*)"#imsU', $match, $value)) {
                             $replace_with = $value[1];
                         }
                         $editable_content = preg_replace('#' . preg_quote($match, '#') . '#msU', $replace_with, $editable_content);
                     }
                 }
             }
             if (preg_match_all('#<input[^>]*type="checkbox"[^>]*>#imsU', $editable_content, $matches)) {
                 foreach ($matches[0] as $match) {
                     if (!strpos($match, 'disabled=')) {
                         if (strpos($match, 'no_permissions') === false) {
                             $replace_with = str_replace('type=', 'disabled="disabled" type=', $match);
                             $editable_content = preg_replace('#' . preg_quote($match, '#') . '#msU', $replace_with, $editable_content);
                         }
                     }
                 }
             }
             if (preg_match_all('#<textarea[^>]*>(.*)</textarea>#imsU', $editable_content, $matches)) {
                 foreach ($matches[0] as $match_key => $match) {
                     if (strpos($match, 'no_permissions') === false) {
                         $replace_with = $matches[1][$match_key];
                         $editable_content = preg_replace('#' . preg_quote($match, '#') . '#msU', $replace_with, $editable_content);
                     }
                 }
             }
             if (preg_match_all('#<select[^>]*>.*</select>#imsU', $editable_content, $matches)) {
                 foreach ($matches[0] as $match_key => $match) {
                     if (strpos($match, 'no_permissions') === false) {
                         // find out which <option> is selected.
                         $replace_with = '';
                         if (preg_match('#<option[^>]*selected[^>]*>(.*)</option>#imsU', $match, $options)) {
                             $replace_with = $options[1];
                         }
                         $editable_content = str_replace($match, $replace_with, $editable_content);
                         //$editable_content = preg_replace('#'.preg_quote($match,'#').'#msU',$replace_with,$editable_content);
                     }
                 }
             }
             // remove all input elements that do not have a class of "no_permissions"
             if (preg_match_all('#<input[^>]*>#imsU', $editable_content, $matches)) {
                 foreach ($matches[0] as $match) {
                     if (strpos($match, 'no_permissions') === false && strpos($match, 'type="text"') === false) {
                         $editable_content = preg_replace('#' . preg_quote($match, '#') . '#imsU', '', $editable_content);
                     }
                 }
             }
             echo $editable_content;
         }
     }
 }
开发者ID:sgh1986915,项目名称:php-crm,代码行数:77,代码来源:security.php


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