當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Textile::textileRestricted方法代碼示例

本文整理匯總了PHP中Textile::textileRestricted方法的典型用法代碼示例。如果您正苦於以下問題:PHP Textile::textileRestricted方法的具體用法?PHP Textile::textileRestricted怎麽用?PHP Textile::textileRestricted使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Textile的用法示例。


在下文中一共展示了Textile::textileRestricted方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: filter

 /**
  * Filter.
  *
  * @param string $thing
  * @param array  $options
  */
 public function filter($thing, $options)
 {
     parent::filter($thing, $options);
     if ($this->options['restricted']) {
         return $this->textile->textileRestricted($thing, $this->options['lite'], $this->options['noimage'], $this->options['rel']);
     } else {
         return $this->textile->textileThis($thing, $this->options['lite'], '', $this->options['noimage'], '', $this->options['rel']);
     }
 }
開發者ID:scar45,項目名稱:textpattern,代碼行數:15,代碼來源:Textile.php

示例2: textileRestricted

 /**
  * Parses content in a restricted mode.
  *
  * @param  string|null $text    The input document in textile format
  * @param  bool|null   $lite    Optional flag to switch the parser into lite mode
  * @param  bool|null   $noimage Optional flag controlling the conversion of images into HTML img tags
  * @param  string|null $rel     Relationship to apply to all generated links
  * @return string      The text from the input document
  */
 public function textileRestricted($text, $lite = null, $noimage = null, $rel = null)
 {
     if ($lite === null) {
         $lite = get_pref('comments_use_fat_textile', 1);
     }
     if ($noimage === null) {
         $noimage = get_pref('comments_disallow_images', 1);
     }
     if ($rel === null && get_pref('comment_nofollow', 1)) {
         $rel = 'nofollow';
     }
     return parent::textileRestricted($text, $lite, $noimage, $rel);
 }
開發者ID:hcgtv,項目名稱:textpattern,代碼行數:22,代碼來源:Parser.php

示例3: parse_string

 public function parse_string($template, $data = array(), $return = FALSE, $options = array())
 {
     if (!is_array($options)) {
         $options = array();
     }
     $options = array_merge($this->config, $options);
     $ci = $this->ci;
     $is_mx = false;
     if (!$return) {
         list($ci, $is_mx) = $this->detect_mx();
     }
     $parser = new Textile($options['doctype']);
     if ($options['restricted_mode']) {
         $template = $parser->textileRestricted($template);
     } else {
         $template = $parser->textileThis($template);
     }
     return $this->output($template, $return, $ci, $is_mx);
 }
開發者ID:bhavesh561988,項目名稱:starter-public-edition-4,代碼行數:19,代碼來源:Parser_textile.php


注:本文中的Textile::textileRestricted方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。