33 | echo $form->input('id', array('between' => '<br />')); | 33 | echo $form->input('id'); |
34 | echo $form->input('title', array('between' => '<br />', 'class' => 'title')); | 34 | echo $form->input('title', array('class' => 'title')); |
35 | echo $form->input('description', array('between' => '<br />', 'class' => 'text')); | 35 | echo $form->input('description', array('class' => 'text')); |
36 | echo $form->input('type', array('between' => '<br />')); | 36 | echo $form->input('type'); |
40 | echo $form->input('theme', array('between' => '<br />')); | 40 | echo $form->input('theme'); |
41 | echo $form->input('slug', array('between' => '<br />', 'class' => 'text', 'readonly' => true)); | 41 | echo $form->input('slug', array('class' => 'text', 'readonly' => true)); |
42 | echo $form->input('post_counter', array('between' => '<br />')); | 42 | echo $form->input('post_counter'); |
43 | echo $upload->image('icon', array('between' => '<br />', 'type' => 'file')); | 43 | echo $upload->image('icon', array('type' => 'file')); |
44 | echo $upload->image('image', array('between' => '<br />', 'type' => 'file')); | 44 | echo $upload->image('image', array('type' => 'file')); |
45 | echo $form->input('pubDate', array('between' => '<br />', 'format' => 'DMY')); | 45 | echo $form->input('pubDate', array('format' => 'DMY')); |