20 lines
289 B
PHP
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)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|