| 
							- <?php
 - /**
 -  * 文档随机模板
 -  *
 -  * @version        $Id: article_template_rand.php 1 14:31 2010年7月12日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');
 - require_once(DEDEINC.'/libraries/oxwindow.class.php');
 - CheckPurview('sys_StringMix');
 - if (empty($dopost)) $dopost = '';
 - $templates = empty($templates) ? '' : stripslashes($templates);
 - $m_file = DEDEDATA.'/template.rand.php';
 - $okmsg = '';
 - //保存配置
 - if ($dopost == 'save') {
 -     CheckCSRF();
 -     $fp = fopen($m_file, 'w');
 -     flock($fp, 3);
 -     fwrite($fp, $templates);
 -     fclose($fp);
 -     $okmsg = '成功保存配置信息 AT:('.MyDate('H:i:s', time()).')';
 - }
 - //对旧文档进行随机模板处理
 - else if ($dopost == 'makeold') {
 -     CheckCSRF();
 -     set_time_limit(3600);
 -     if (!file_exists($m_file)) {
 -         AjaxHead();
 -         echo "配置文件不存在";
 -         exit();
 -     }
 -     require_once($m_file);
 -     if ($cfg_tamplate_rand == 0) {
 -         AjaxHead();
 -         echo "系统没开启允许随机模板的选项";
 -         exit();
 -     }
 -     $totalTmp = count($cfg_tamplate_arr) - 1;
 -     if ($totalTmp < 1) {
 -         AjaxHead();
 -         echo "随机模板的数量必须为2个或以上";
 -         exit();
 -     }
 -     for ($i = 0; $i < 10; $i++) {
 -         $temp = $cfg_tamplate_arr[mt_rand(0, $totalTmp)];
 -         $dsql->ExecuteNoneQuery("UPDATE `#@__addonarticle` set templet='$temp' where RIGHT(aid, 1)='$i' ");
 -     }
 -     AjaxHead();
 -     echo "全部随机操作成功";
 -     exit();
 - }
 - //清除全部的指定模板
 - else if ($dopost == 'clearold') {
 -     CheckCSRF();
 -     $dsql->ExecuteNoneQuery("UPDATE `#@__addonarticle` set templet='' ");
 -     $dsql->ExecuteNoneQuery(" OPTIMIZE TABLE `#@__addonarticle` ");
 -     AjaxHead();
 -     echo "全部清除操作成功";
 -     exit();
 - }
 - //读出
 - if (empty($templates) && filesize($m_file) > 0) {
 -     $fp = fopen($m_file, 'r');
 -     $templates = fread($fp, filesize($m_file));
 -     fclose($fp);
 - }
 - $wintitle = "随机模板防采集设置";
 - $wecome_info = "随机模板防采集设置";
 - make_hash();
 - $msg = "
 - <link rel='stylesheet' href='../static/web/css/admin.css'>
 - <script src='js/main.js'></script>
 - <script src='../static/web/js/webajax.js'></script>
 - <script>
 - function DoRand(jobname)
 - {
 -     ChangeFullDiv('show');
 -     \$DE('loading').style.display = 'block';
 -     fetch('article_template_rand.php?dopost='+jobname+'&token={$_SESSION['token']}').then(resp=>resp.text()).then((d)=>{
 -         \$DE('tmpct').innerHTML = d;
 -         \$DE('loading').style.display = 'none';
 -         ChangeFullDiv('hide');
 -     });
 - }
 - </script>
 - <div id='loading' style='position:absolute;top:160;display:none;z-index:3000'>
 -     <img src='../static/web/img/loadinglit.gif'>请稍后,正在操作中
 - </div>
 - <table width='100%' align='center'>
 - <tr>
 -     <td>
 -     如果您想对旧的文档应用随机模板设置,请点击此对旧文档进行处理(必须设置好模板项)
 -     <a href='javascript:;' onclick='DoRand(\"makeold\")' class='btn btn-success btn-sm'>设置全部</a>
 -     <a href='javascript:;' onclick='DoRand(\"clearold\")' class='btn btn-success btn-sm'>取消全部</a>
 -     <span id='tmpct'>$okmsg</span>
 -     </td>
 - </tr>
 - <tr>
 -     <td><textarea name='templates' id='templates' style='width:100%;height:250px'>$templates</textarea></td>
 - </tr>
 - </table>";
 - $win = new OxWindow();
 - $win->Init('article_template_rand.php', 'js/blank.js', 'POST');
 - $win->AddHidden('dopost', 'save');
 - $win->AddHidden('token', $_SESSION['token']);
 - $win->AddTitle("本设置仅适用于系统默认的文档模型,设置后发布文档时会自动按指定的模板随机获取一个,如果不想使用此功能,把它设置为空即可");
 - $win->AddMsgItem($msg);
 - $winform = $win->GetWindow('ok');
 - $win->Display();
 - ?>
 
 
  |