Esempio n. 1
0
 protected function save($id, $values)
 {
     if ($id) {
         if ($entity = $this->getItem($id)) {
             Doctrine::setValues($entity, $values);
         } else {
             throw new \Exception('Entity: ' . $this->entityClassName . ' with id=' . $id . ' not found');
         }
     } else {
         $entity = new $this->entityClassName();
         Doctrine::setValues($entity, $values);
     }
     $em = $this->getEntityManager();
     $em->persist($entity);
     $em->flush();
     return $entity;
 }
Esempio n. 2
0
 public function get()
 {
     $container = Container::getInstance();
     $app = $container->get('app');
     $contr = $app->getController();
     $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 = $this->em->getClassMetadata($class);
                 if (isset($class_meta->fieldMappings['path_alias'])) {
                     $items = $this->em->getRepository($class)->findBy(array(), array('path_alias' => 'ASC'));
                 } else {
                     $items = $this->em->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 = $this->em->getClassMetadata($class);
                 if (isset($class_meta->fieldMappings['path_alias'])) {
                     $items = $this->em->getRepository($class)->findBy(array(), array('path_alias' => 'ASC'));
                 } else {
                     $items = $this->em->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' => $app->generateURL('default', array('_component' => $contr->getComponentName(), '_controller' => $contr->getControllerName(), '_action' => 'save')), 'method' => 'POST', 'style' => 'width: 100%;');
     return HTML::form($html, $form_atr);
 }