webservice/application/controllers/ExportController.php
2011-01-24 16:04:09 +00:00

20 lines
289 B
PHP

<?php
class ExportController extends Zend_Controller_Action
{
public function init()
{
$this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender();
}
public function indexAction()
{
echo "Export";
}
protected function checkFile($path)
{
}
}