Exemplo n.º 1
0
 public function removeAction(Request &$request)
 {
     if ($id = $request->get('id')) {
         if ($this->remove($id)) {
             return $this->redirect(BASE_URL . Sokol::getCom()->name . '/' . $this->name . '/list');
         }
     }
     $smarty = Smarty::getInstance();
     $smarty->assign('content', 'Item not found');
     return new Response(Smarty::fetchTemplate('index.tpl'));
 }
Exemplo n.º 2
0
 public function run(Request $request)
 {
     $this->before_run($request);
     Log::point(__METHOD__);
     $this->getRoutes($request);
     //получаем роуты в объект $request
     //Sokol::$component = HttpKernel::getComponent($request);   //создаем объект компонента
     Sokol::setCom(HttpKernel::getComponent($request));
     $res = Sokol::getCom()->run($request);
     //получаем результаты выволнения компонента
     $this->after_run($res);
     return $res;
 }
Exemplo n.º 3
0
 public static function getController(Request &$request = null)
 {
     if ($request) {
         if ($contr_name = $request->get('_controller', null)) {
             $contr_name_full = $contr_name . self::controllerSuffix;
             $contr_class = Sokol::getCom()->getNamespace() . '\\' . self::controllerDirectory . '\\' . $contr_name_full;
             if (class_exists($contr_class)) {
                 return new $contr_class($contr_name);
             } else {
                 throw new \Exception('Controller ' . $contr_class . ' not found');
             }
         } else {
             throw new \Exception('_controller is empty');
         }
     }
     return NULL;
 }
Exemplo n.º 4
0
 public function run(Request &$request)
 {
     $this->before_run($request);
     Log::point(__METHOD__);
     $this->getRoutes($request);
     $session = Sokol::getSession();
     $user_id = $session->get('user_id');
     if ($user_id) {
         Sokol::setUser($user_id);
     }
     if (Sokol::getUser() != NULL || $request->get('_component') == 'main') {
         Sokol::setCom(HttpKernel::getComponent($request));
         //создаем объект компонента
         $res = Sokol::getCom()->run($request);
         //получаем результаты выволнения компонента
         $this->after_run($res);
         return $res;
     } else {
         return new RedirectResponse(BASE_URL);
     }
 }
Exemplo n.º 5
0
 protected function getTmplName()
 {
     return Sokol::getCom()->name . '/' . Sokol::getController()->name . '/' . Sokol::getRequest()->get('_action') . '.tpl';
 }
Exemplo n.º 6
0
 public function get()
 {
     $html = '<table style="width:100%;">';
     $metadata = $this->getMetadata();
     //echo '<pre>';var_dump($metadata);
     $columns = $this->getColumns();
     $values = $this->getValues();
     $this->getRequired();
     foreach ($columns as $column => $label) {
         if (isset($metadata->associationMappings[$column])) {
             $row = $metadata->associationMappings[$column];
             if (Doctrine::isManyToOne($metadata, $column)) {
                 $class = $row['targetEntity'];
                 $name = $row['fieldName'];
                 $method = 'get_' . $name;
                 $method = Camel::to_camel_case($method);
                 $obj = $this->entity->{$method}();
                 $value = !empty($obj) ? $obj->getId() : 0;
                 $class_meta = Doctrine::getEntityManager()->getClassMetadata($class);
                 if (isset($class_meta->fieldMappings['path_alias'])) {
                     $items = Doctrine::getEntityManager()->getRepository($class)->findBy(array(), array('path_alias' => 'ASC'));
                 } else {
                     $items = Doctrine::getEntityManager()->getRepository($class)->findAll();
                 }
                 $attributes = array('required' => $this->has($name, $this->required), 'style' => 'width: 100%;');
                 $html .= '<tr><td>' . $label . '</td><td>' . self::getSelect($name, $value, $items, $attributes) . '</td></tr>';
             } elseif (Doctrine::isManyToMany($metadata, $column)) {
                 $class = $row['targetEntity'];
                 $name = $row['fieldName'];
                 $method = 'get_' . $name;
                 $method = Camel::to_camel_case($method);
                 $arr = $this->entity->{$method}();
                 $class_meta = Doctrine::getEntityManager()->getClassMetadata($class);
                 if (isset($class_meta->fieldMappings['path_alias'])) {
                     $items = Doctrine::getEntityManager()->getRepository($class)->findBy(array(), array('path_alias' => 'ASC'));
                 } else {
                     $items = Doctrine::getEntityManager()->getRepository($class)->findAll();
                 }
                 $attributes = array('required' => $this->has($name, $this->required), 'style' => 'width: 100%;');
                 $html .= '<tr><td>' . $label . '</td><td>' . self::getMulti($name . '[]', $arr, $items, $attributes) . '</td></tr>';
             }
         } else {
             $row = $metadata->fieldMappings[$column];
             $name = $row['fieldName'];
             $primary = isset($row['id']) && $row['id'] == TRUE;
             $type = $row['type'];
             $length = isset($row['length']) ? $row['length'] : null;
             $value = $values->{$name};
             $attributes = array('required' => $this->has($name, $this->required));
             $html .= '<tr><td>' . $label . '</td><td>' . self::getInput($type, $name, $value, $length, $primary, $attributes) . '</td></tr>';
         }
     }
     $html .= '</table>';
     $html .= HTML::submit('submit', 'Сохранить');
     $form_atr = array('action' => BASE_URL . Sokol::getCom()->name . '/' . Sokol::getController()->name . '/save', 'method' => 'POST', 'style' => 'width: 100%;');
     return HTML::form($html, $form_atr);
 }