コード例 #1
0
 /**
  * Returns "|" separated list of mapped shortcode tags.
  *
  * @static
  * @return string
  */
 public static function getTagsRegexp()
 {
     if (empty(self::$tags_regexp)) {
         self::$tags_regexp = implode('|', array_keys(self::$sc));
     }
     return self::$tags_regexp;
 }