44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
|
<?php
|
||
|
class Admin_TestController extends Zend_Controller_Action
|
||
|
{
|
||
|
function preDispatch()
|
||
|
{
|
||
|
$this->db=Zend_Registry::get('db');
|
||
|
$this->view->config = Zend_Registry::get('config');
|
||
|
$this->messenger=$this->_helper->getHelper('FlashMessenger');
|
||
|
$this->view->messages = $this->messenger->getMessages();
|
||
|
$this->wdb=Zend_Db::factory('Pdo_Pgsql', array('host'=> '210.77.68.252','username' => 'wlz','password' => 'glacier','dbname'=> 'new_geonetwork'));
|
||
|
}
|
||
|
function postDispatch()
|
||
|
{
|
||
|
$this->view->messages = $this->messenger->getMessages();
|
||
|
}
|
||
|
function indexAction()
|
||
|
{
|
||
|
//其他连接
|
||
|
}
|
||
|
|
||
|
|
||
|
//测试文献的下载链接是否正确
|
||
|
function reftestAction()
|
||
|
{
|
||
|
$sql="select * from reference where link<>''";
|
||
|
$rows=$this->db->query($sql);
|
||
|
foreach($rows as $row)
|
||
|
{
|
||
|
if (substr($row['link'],0,1)=='/')
|
||
|
{
|
||
|
if (!file_exists("http://westdc.westgis.ac.cn".$row['link']))
|
||
|
{
|
||
|
$ref[]=$row;
|
||
|
}
|
||
|
} elseif (!file_exists($row['link'])) {
|
||
|
$ref[]=$row;
|
||
|
}
|
||
|
}
|
||
|
$this->view->ref=$ref;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|