当前位置: 首页>>代码示例>>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;未经允许,请勿转载。