|
123456789101112131415161718192021222324252627 |
- <?php
- /**
- * 生成Rss操作
- *
- * @version $Id: makehtml_rss.php 1 11:17 2010年7月19日Z tianya $
- * @package DedeBIZ.Administrator
- * @copyright Copyright (c) 2022, DedeBIZ.COM
- * @license https://www.dedebiz.com/license
- * @link https://www.dedebiz.com
- */
- require_once(dirname(__FILE__)."/config.php");
- CheckPurview('sys_MakeHtml');
- require_once(DEDEINC."/arc.rssview.class.php");
-
- if (empty($tid)) $tid = 0;
- if (empty($maxrecord)) $maxrecord = 50;
-
- $row = $dsql->GetOne("SELECT id FROM `#@__arctype` WHERE id>'$tid' AND ispart<>2 ORDER BY id ASC LIMIT 0,1;");
- if (!is_array($row)) {
- echo "<link rel=\"stylesheet\" href=\"{$cfg_cmsurl}/static/css/bootstrap.min.css\"><style>.modal {position: static;}</style>";
- echo "<div class=\"alert alert-success\" role=\"alert\">完成所有文件更新</div>";
- } else {
- $rv = new RssView($row['id'], $maxrecord);
- $rssurl = $rv->MakeRss(0);
- $tid = $row['id'];
- ShowMsg("成功更新".$rssurl.",继续进行操作", "makehtml_rss_action.php?tid=$tid&maxrecord=$maxrecord", 0, 100);
- }
|