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


PHP qa_html_theme_base::attribution方法代碼示例

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


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

示例1: attribution

 function attribution()
 {
     // Please see the license at the top of this file before changing this link. Thank you.
     qa_html_theme_base::attribution();
     // modxclub [start] Please erase. Use this theme according to license of Question2Answer.
     $this->output('<DIV CLASS="qa-designedby">', 'Designed by <A HREF="http://www.axiologic.ro">Axiologic SaaS</A>', '</DIV>');
     // modxclub [end]
 }
開發者ID:ruuttt,項目名稱:question2answer_sandbox,代碼行數:8,代碼來源:qa-theme.php

示例2: attribution

 /**
  * Q2A Market attribution.
  * I'd really appreciate you displaying this link on your Q2A site. Thank you - Jatin
  *
  * @since Snow 1.4
  */
 public function attribution()
 {
     // floated right
     $this->output('<div class="qa-attribution">', 'Snow Theme by <a href="http://www.q2amarket.com">Q2A Market</a>', '</div>');
     parent::attribution();
 }
開發者ID:ronkeizer,項目名稱:question2answer,代碼行數:12,代碼來源:qa-theme.php

示例3: attribution

 function attribution()
 {
     $this->output('<div class="qa-attribution">', '&nbsp;| Snow Theme by <a href="http://www.q2amarket.com">Q2A Market</a>', '</div>');
     qa_html_theme_base::attribution();
 }
開發者ID:gogupe,項目名稱:question2answer-releases,代碼行數:5,代碼來源:qa-theme.php

示例4: attribution

 public function attribution()
 {
     // Hi there. I'd really appreciate you displaying this link on your Q2A site. Thank you - Gideon
     $this->output('<div class="qa-attribution">', ', Designed by <a href="http://qa-themes.com/" title="Question2Answer Themes">Q2A Themes</a>', '</div>');
     qa_html_theme_base::attribution();
 }
開發者ID:swuit,項目名稱:swuit-q2a,代碼行數:6,代碼來源:qa-layer-base.php

示例5: attribution

 function attribution()
 {
     // you can disable this links in admin options
     $this->output('<DIV CLASS="qa-attribution-container">');
     qa_html_theme_base::attribution();
     $this->output('<DIV CLASS="qa-attribution">', ', Design by <A HREF="http://QA-Themes.com/" title="Free Question2Answer Themes and plugins">Q2A Themes</A>', '</DIV>');
     $this->output('</DIV>');
 }
開發者ID:swuit,項目名稱:swuit-q2a,代碼行數:8,代碼來源:qa-theme.php

示例6: attribution

 /**
  * Attribution link for the theme which adds the authors name
  *
  * @return null
  */
 function attribution()
 {
     if (qa_opt('donut_show_social_links_at_footer')) {
         $this->footer_social_links();
     }
     $this->output('<div class="footer-bottom">');
     $this->donut_attribution();
     parent::attribution();
     if (qa_opt('donut_show_copyright_at_footer')) {
         $this->donut_copyright();
     }
     $this->output('</div>');
 }
開發者ID:microbye,項目名稱:Donut,代碼行數:18,代碼來源:qa-donut-layer.php

示例7: attribution

 /**
  * Attribution link for the theme which adds the authors name 
  * @return [type] [description]
  */
 function attribution()
 {
     /*Please do not remove this as you are using this for free . I will appriciate if you keep this on your site */
     $this->output();
     qa_html_theme_base::attribution();
 }
開發者ID:architbakliwal,項目名稱:RapidInnovation,代碼行數:10,代碼來源:qa-donut-layer.php

示例8: attribution

 /**
  * Attribution link for the theme which adds the authors name 
  * @return [type] [description]
  */
 function attribution()
 {
     /*Please do not remove this as you are using this for free . I will appriciate if you keep this on your site */
     $this->output('<div class="qa-attribution">', '&nbsp;| Donut Theme by <a href="http://amiyasahu.com">Amiya Sahu</a>', '</div>');
     qa_html_theme_base::attribution();
 }
開發者ID:arioch1984,項目名稱:Donut,代碼行數:10,代碼來源:qa-donut-layer.php


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