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


PHP Gdn_Format::replaceButProtectCodeBlocks方法代码示例

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


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

示例1: mentions

 public static function mentions($Mixed)
 {
     if (!is_string($Mixed)) {
         return self::to($Mixed, 'Mentions');
     } else {
         // Check for a custom formatter.
         $Formatter = Gdn::factory('MentionsFormatter');
         if (is_object($Formatter)) {
             return $Formatter->formatMentions($Mixed);
         }
         // Handle @mentions.
         if (C('Garden.Format.Mentions')) {
             $urlFormat = str_replace('{name}', '$2', self::$MentionsUrlFormat);
             // Unicode includes Numbers, Letters, Marks, & Connector punctuation.
             $Pattern = unicodeRegexSupport() ? '[\\pN\\pL\\pM\\pPc]' : '\\w';
             $Mixed = Gdn_Format::replaceButProtectCodeBlocks('/(^|[\\s,\\.>\\(])@(' . $Pattern . '{1,64})\\b/i', '\\1' . anchor('@$2', $urlFormat), $Mixed);
         }
         // Handle #hashtag searches
         if (C('Garden.Format.Hashtags')) {
             $Mixed = Gdn_Format::replaceButProtectCodeBlocks('/(^|[\\s,\\.>])\\#([\\w\\-]+)(?=[\\s,\\.!?<]|$)/i', '\\1' . anchor('#\\2', '/search?Search=%23\\2&Mode=like') . '\\3', $Mixed);
         }
         // Handle "/me does x" action statements
         if (C('Garden.Format.MeActions')) {
             $Mixed = Gdn_Format::replaceButProtectCodeBlocks('/(^|[\\n])(\\/me)(\\s[^(\\n)]+)/i', '\\1' . wrap(wrap('\\2', 'span', array('class' => 'MeActionName')) . '\\3', 'span', array('class' => 'AuthorAction')), $Mixed);
         }
         return $Mixed;
     }
 }
开发者ID:ringoma,项目名称:vanilla,代码行数:28,代码来源:class.format.php

示例2: translateToHtml

 /**
  * Translate all emoji aliases to their corresponding Html image tags.
  *
  * Thanks to punbb 1.3.5 (GPL License) for function, which was largely
  * inspired from their do_smilies function.
  *
  * @param string $Text The actual user-submitted post
  * @return string Return the emoji-formatted post
  */
 public function translateToHtml($Text)
 {
     if (!$this->enabled) {
         return $Text;
     }
     $Text = ' ' . $Text . ' ';
     // First, translate all aliases. Canonical emoji will get translated
     // out of a loop.
     $emojiAliasList = $this->aliases;
     // Loop through and apply changes to all visible aliases from dropdown
     foreach ($emojiAliasList as $emojiAlias => $emojiCanonical) {
         $emojiFilePath = $this->getEmojiPath($emojiCanonical);
         if (strpos($Text, htmlentities($emojiAlias)) !== false) {
             $Text = Gdn_Format::ReplaceButProtectCodeBlocks('`(?<=[>\\s]|(&nbsp;))' . preg_quote(htmlentities($emojiAlias), '`') . '(?=\\W)`m', $this->img($emojiFilePath, $emojiAlias), $Text);
         }
     }
     // Second, translate canonical list, without looping.
     $ldelim = preg_quote($this->ldelim, '`');
     $rdelim = preg_quote($this->rdelim, '`');
     $emoji = $this;
     $Text = Gdn_Format::replaceButProtectCodeBlocks("`({$ldelim}[a-z0-9_+-]+{$rdelim})`i", function ($m) use($emoji) {
         $emoji_name = trim($m[1], ':');
         $emoji_path = $emoji->getEmojiPath($emoji_name);
         if ($emoji_path) {
             return $emoji->img($emoji_path, $emoji->ldelim . $emoji_name . $emoji->rdelim);
         } else {
             return $m[0];
         }
     }, $Text, true);
     return substr($Text, 1, -1);
 }
开发者ID:mcnasby,项目名称:datto-vanilla,代码行数:40,代码来源:class.emoji.php

示例3: mentions

 /**
  * Handle mentions formatting.
  *
  * @param $Mixed
  * @return mixed|string
  */
 public static function mentions($Mixed)
 {
     if (!is_string($Mixed)) {
         return self::to($Mixed, 'Mentions');
     } else {
         // Check for a custom formatter.
         $Formatter = Gdn::factory('MentionsFormatter');
         if (is_object($Formatter)) {
             return $Formatter->formatMentions($Mixed);
         }
         // Handle @mentions.
         if (c('Garden.Format.Mentions')) {
             // Only format mentions that are not already in anchor tags or code tags.
             $Mixed = self::tagContent($Mixed, 'Gdn_Format::formatMentionsCallback');
         }
         // Handle #hashtag searches
         if (c('Garden.Format.Hashtags')) {
             $Mixed = Gdn_Format::replaceButProtectCodeBlocks('/(^|[\\s,\\.>])\\#([\\w\\-]+)(?=[\\s,\\.!?<]|$)/i', '\\1' . anchor('#\\2', '/search?Search=%23\\2&Mode=like') . '\\3', $Mixed);
         }
         // Handle "/me does x" action statements
         if (c('Garden.Format.MeActions')) {
             $Mixed = Gdn_Format::replaceButProtectCodeBlocks('/(^|[\\n])(\\/me)(\\s[^(\\n)]+)/i', '\\1' . wrap(wrap('\\2', 'span', array('class' => 'MeActionName')) . '\\3', 'span', array('class' => 'AuthorAction')), $Mixed);
         }
         return $Mixed;
     }
 }
开发者ID:vanilla,项目名称:vanilla,代码行数:32,代码来源:class.format.php


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