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

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