1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * 采集地址
- *
- * @version $Id: co_url.php 1 14:31 2010年7月12日Z tianya $
- * @package DedeCMS.Administrator
- * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
- * @license http://help.dedecms.com/usersguide/license.html
- * @link http://www.dedecms.com
- */
- require_once(dirname(__FILE__)."/config.php");
- require_once(DEDEINC."/datalistcp.class.php");
- setcookie("ENV_GOBACK_URL",$dedeNowurl,time()+3600,"/");
- $where = "";
- if(!isset($nid)) $nid="";
- if(!empty($nid)) $where = " where cu.nid='$nid' ";
- if(empty($small)) $small = 0;
- if($nid!='')
- {
- $exportbt = "
- <input type='button' name='b0' value='导出内容' class='coolbg np'
- style='width:80px' onClick=\"location.href='co_export.php?nid=$nid';\" />
- <input type='button' name='b0' value='采集本节点' class='coolbg np'
- style='width:80px' onClick=\"location.href='co_gather_start.php?nid=$nid';\" />
- ";
- }
- else
- {
- $exportbt = "";
- }
- $sql = "SELECT cu.aid,cu.nid,cu.isexport AS isex,cu.title,cu.url,cu.dtime,cu.isdown,cn.notename,tp.typename FROM `#@__co_htmls` cu
- LEFT JOIN `#@__co_note` cn ON cn.nid=cu.nid
- LEFT JOIN `#@__arctype` tp ON tp.id=cu.typeid
- $where ORDER BY cu.aid DESC";
- $dlist = new DataListCP();
- $dlist->SetParameter("nid", $nid);
- $dlist->SetParameter("small", $small);
- if($small==0)
- {
- $dlist->SetTemplate(DEDEADMIN."/templets/co_url.htm");
- }
- else
- {
- $dlist->SetTemplate(DEDEADMIN."/templets/co_url_2.htm");
- }
- $dlist->SetSource($sql);
- $dlist->display();
- function IsDownLoad($isd)
- {
- if($isd=="0") return "未下载";
- else return "已下载";
- }
- function IsExData($isex)
- {
- if($isex==0) return "未导出";
- else return "已导出";
- }
|