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


PHP FusionCore_Plugin::get_shortcode_regex方法代码示例

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


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

示例1: parse_tab_parameter

 function parse_tab_parameter($content, $shortcode, $args = null)
 {
     $preg_match_tabs_single = preg_match_all(FusionCore_Plugin::get_shortcode_regex($shortcode), $content, $tabs_single);
     if (is_array($tabs_single[0])) {
         foreach ($tabs_single[0] as $key => $tab) {
             if (is_array($args)) {
                 $preg_match_titles = preg_match_all('/' . $shortcode . ' id=([0-9]+)/i', $tab, $ids);
                 if (array_key_exists('0', $ids[1])) {
                     $id = $ids[1][0];
                 } else {
                     $title = 'default';
                 }
                 foreach ($args as $key => $value) {
                     if ($key == $shortcode . $id) {
                         $title = $value;
                     }
                 }
             } else {
                 $preg_match_titles = preg_match_all('/' . $shortcode . ' title="([^\\"]+)"/i', $tab, $titles);
                 if (array_key_exists('0', $titles[1])) {
                     $title = $titles[1][0];
                 } else {
                     $title = 'default';
                 }
             }
             $preg_match_icons = preg_match_all('/' . $shortcode . '( id=[0-9]+| title="[^\\"]+")? icon="([^\\"]+)"/i', $tab, $icons);
             if (array_key_exists('0', $icons[2])) {
                 $icon = $icons[2][0];
             } else {
                 $icon = 'none';
             }
             // create unique tab id for linking
             $sanitized_title = hash("md5", $title, false);
             $sanitized_title = 'tab' . str_replace('-', '_', $sanitized_title);
             $unique_id = 'tab-' . substr(md5(get_the_ID() . '-' . $this->tabs_counter . '-' . $this->tab_counter . '-' . $sanitized_title), 13);
             // create array for every single tab shortcode
             $this->tabs[] = array('title' => $title, 'icon' => $icon, 'unique_id' => $unique_id);
             $this->tab_counter++;
         }
         $this->tab_counter = 1;
     }
 }
开发者ID:mathewdenis,项目名称:avada,代码行数:42,代码来源:class-tabs.php


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