Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fiktivkod/application/forms/Admin_BlogCreate.php
2010-10-30 13:50:22 +02:00

19 lines
No EOL
380 B
PHP

<?php
class Admin_BlogCreate extends Fiktiv_Form
{
public function init() {
$this->addElement('Text', 'title', array(
'label' => 'Subject'
));
$this->addElement('Textarea', 'content', array(
'label' => 'Post'
));
$this->addElement('Submit', 'Submit', array(
'label' => 'Save'
));
}
}