SpreadController.php
360 Bytes
<?php
class SpreadController extends QLib_Controller_Default_Action {
public function init() {
}
public function indexAction()
{
$this->_helper->layout()->disableLayout();
$id = intval($this->helpGparam('id'));
if($id < 1)
{
return $this->helpError();
}
$this->view->info = $info = QModels_Operations_Mint_Client::getByIdInfo($id);
}
}