예제 #1
0
 public function render(Entity $entity)
 {
     $attr = $this->attributes + array('class' => 'form', 'enctype' => $entity->isMultiPart() ? 'multipart/form-data' : null, 'action' => $entity->getAction(), 'method' => $entity->getMethod());
     return Entity::html('form', $attr, $this->renderBody($entity));
 }