国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
888B

  1. <?php
  2. /**
  3. * 单页文档相同标识调用标签
  4. *
  5. * @version $Id: likepage.lib.php 1 9:29 2010年7月6日Z tianya $
  6. * @package DedeCMS.Taglib
  7. * @copyright Copyright (c) 2007 - 2020, DesDev, Inc.
  8. * @license http://help.dedecms.com/usersguide/license.html
  9. * @link http://www.dedecms.com
  10. */
  11. /*>>dede>>
  12. <name>单页文档相同标识调用标签</name>
  13. <type>全局标记</type>
  14. <for>V55,V56,V57</for>
  15. <description>调用相同标识单页文档</description>
  16. <demo>
  17. {dede:likepage likeid='' row=''/}
  18. </demo>
  19. <attributes>
  20. <iterm>row:调用条数</iterm>
  21. <iterm>likeid:标识名</iterm>
  22. </attributes>
  23. >>dede>>*/
  24. if(!defined('DEDEINC')) exit('Request Error!');
  25. require_once(dirname(__FILE__).'/likesgpage.lib.php');
  26. function lib_likepage(&$ctag,&$refObj)
  27. {
  28. return lib_likesgpage($ctag, $refObj);
  29. }