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


PHP qa_html_theme_base::footer方法代碼示例

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


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

示例1: footer

 function footer()
 {
     qa_html_theme_base::footer();
     if (@$this->content['q_view']) {
         if (qa_opt('share_plugin_twitter')) {
             $this->output('<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>');
         }
         if (qa_opt('share_plugin_google')) {
             $this->output('<script type="text/javascript">(function() {var po = document.createElement("script"); po.type = "text/javascript"; po.async = true;po.src = "https://apis.google.com/js/plusone.js";var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(po, s);})();</script>');
         }
     }
 }
開發者ID:mostafiz93,項目名稱:PrintfScanf,代碼行數:12,代碼來源:qa-share-layer.php

示例2: footer

 /**
  * Footer in full width bottom bar
  *
  * @since Snow 1.4
  */
 public function footer()
 {
     $this->output('<div class="qam-footer-box">');
     $this->output('<div class="qam-footer-row">');
     $this->widgets('full', 'bottom');
     $this->output('</div> <!-- END qam-footer-row -->');
     parent::footer();
     $this->output('</div> <!-- END qam-footer-box -->');
 }
開發者ID:ronkeizer,項目名稱:question2answer,代碼行數:14,代碼來源:qa-theme.php

示例3: footer

    function footer()
    {
        $this->output('<footer class="qa-footer-container">');
        qa_html_theme_base::footer();
        $this->output('</footer>', '');
        $this->output('<div id="ajax-holder" style="display:none;visibility:hidden;"></div>', '');
        $this->output('
			<span id="top-link-block" class="hidden">
				<a href="#top" class="well well-sm"  onclick="$(\'html,body\').animate({scrollTop:0},\'slow\');return false;">
					<i class="fa fa-chevron-up"></i>
				</a>
			</span>
			', '');
    }
開發者ID:swuit,項目名稱:swuit-q2a,代碼行數:14,代碼來源:qa-layer-base.php

示例4: body_suffix

 function body_suffix()
 {
     $this->output('<div class="qa-footer-bottom-group">');
     qa_html_theme_base::footer();
     $this->output('</div> <!-- END footer-bottom-group -->', '');
 }
開發者ID:gogupe,項目名稱:question2answer-releases,代碼行數:6,代碼來源:qa-theme.php

示例5: footer

 /**
  * Footer in full width bottom bar
  *
  * @since Snow 1.4
  */
 public function footer()
 {
     // to replace standard Q2A footer
     global $qam_snow;
     $this->output($qam_snow->footer_custom_content);
     $this->output('<div class="qam-footer-box">');
     $this->output('<div class="qam-footer-row">');
     $this->widgets('full', 'bottom');
     $this->output('</div> <!-- END qam-footer-row -->');
     qa_html_theme_base::footer();
     $this->output('</div> <!-- END qam-footer-box -->', '');
 }
開發者ID:Trideon,項目名稱:gigolo,代碼行數:17,代碼來源:qa-theme.php

示例6:

 function body_suffix()
 {
     if (qa_opt('donut_show_site_stats_above_footer')) {
         $this->donut_site_stats_bottom();
     }
     $this->output('<footer class="donut-footer">');
     if (qa_opt('donut_enable_back_to_top_btn')) {
         $this->output('<a class="donut-top"><span class="fa fa-chevron-up"></span></a>');
     }
     $this->output('<div class="container">');
     parent::footer();
     $this->output('</div> <!--END Container-->');
     $this->output('</footer> <!-- END footer -->', '');
 }
開發者ID:microbye,項目名稱:Donut,代碼行數:14,代碼來源:qa-donut-layer.php

示例7: body_suffix

 function body_suffix()
 {
     $this->output('<footer class="donut-footer">');
     $this->output('<div class="container">');
     qa_html_theme_base::footer();
     $this->output('</div>');
     $this->output('</footer> <!-- END footer -->', '');
 }
開發者ID:architbakliwal,項目名稱:RapidInnovation,代碼行數:8,代碼來源:qa-donut-layer.php

示例8:

 function body_suffix()
 {
     if (donut_opt('allow_site_stats_above_footer')) {
         $this->donut_site_stats_bottom();
     }
     $this->output('<footer class="donut-footer">');
     if (donut_opt('enable_back_to_top_button')) {
         $this->output('<a class="donut-top"></a>');
     }
     $this->output('<div class="container">');
     parent::footer();
     $this->output('</div> <!--END Container-->');
     $this->output('</footer> <!-- END footer -->', '');
 }
開發者ID:hckrtech,項目名稱:Donut,代碼行數:14,代碼來源:qa-donut-layer.php

示例9: footer

 function footer()
 {
     $this->output('<DIV CLASS="qa-wrap-footer">');
     qa_html_theme_base::footer();
     $this->output('</DIV> <!-- END qa-footer -->', '');
 }
開發者ID:swuit,項目名稱:swuit-q2a,代碼行數:6,代碼來源:qa-theme.php


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