public function addAction()
 {
     parent::addAction();
     $config = array(Zend_Navigation_Page_Mvc::factory(array('label' => 'Отменить', 'module' => 'admin', 'controller' => 'pages', 'action' => 'index')));
     $containerNav = new Zend_Navigation($config);
     $this->view->assign('container_nav', $containerNav);
 }
 public function addAction()
 {
     parent::addAction();
     $form = $this->_forms['edit'];
     $form->setDefaults(array('sorting' => 0, 'active' => 1, 'deleted' => 0, 'categoryId' => !$this->_request->getParam('id') ? 0 : $this->_request->getParam('id'), 'imageLoad' => '/files/images/product/2012-05-22_foto_nv.jpg'));
     $form->getDisplayGroup('desc')->addAttribs(array('class' => 'tab-pane active'));
     $imageTableElement = $form->getElement('imageTable');
     $imageTablePrepend = '<button type="button" class="btn btn-default" id="imageTableLoadBtn"><span class="glyphicon glyphicon-save"></span></button>';
     $imageTableElement->setAttrib('prepend_btn', $imageTablePrepend);
 }
 public function addAction()
 {
     parent::addAction();
     $form = $this->_forms['edit'];
     $form->setDefaults(array('sorting' => 0, 'active' => 1, 'deleted' => 0, 'categoryId' => !$this->_request->getParam('id') ? 0 : $this->_request->getParam('id'), 'author' => $this->getUserAuth()->name));
     foreach ($form->getElements() as $key => $element) {
         if ($element instanceof Zend_Form_Element_Image) {
             $form->setDefault($element->getName(), '/files/images/product/2012-05-22_foto_nv.jpg');
         }
     }
 }
 public function addAction()
 {
     parent::addAction();
     $form = $form = $this->_forms['edit'];
     $form->setDefaults(array('sorting' => 0, 'active' => 1, 'deleted' => 0, 'categoryId' => !$this->_request->getParam('id') ? 0 : $this->_request->getParam('id'), 'imageLoad' => '/files/images/product/2012-05-22_foto_nv.jpg'));
 }