本文整理汇总了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;
}
}