国内流行的内容管理系统(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.

26 lines
756B

  1. <?php
  2. if(!defined('DEDEINC'))
  3. {
  4. exit("Request Error!");
  5. }
  6. /**
  7. * 下载说明标签
  8. *
  9. * @version $Id: softmsg.lib.php 1 9:29 2010年7月6日Z tianya $
  10. * @package DedeCMS.Taglib
  11. * @copyright Copyright (c) 2020, DedeBIZ.COM
  12. * @license https://www.dedebiz.com/license
  13. * @link https://www.dedebiz.com
  14. */
  15. function lib_softmsg(&$ctag,&$refObj)
  16. {
  17. global $dsql;
  18. //$attlist="type|textall,row|24,titlelen|24,linktype|1";
  19. //FillAttsDefault($ctag->CAttribute->Items,$attlist);
  20. //extract($ctag->CAttribute->Items, EXTR_SKIP);
  21. $revalue = '';
  22. $row = $dsql->GetOne(" SELECT * FROM `#@__softconfig` ");
  23. if(is_array($row)) $revalue = $row['downmsg'];
  24. return $revalue;
  25. }