23 lines
477 B
PHP
23 lines
477 B
PHP
<?php
|
|
|
|
class Application_Form_EditHistoryFile extends Application_Form_EditHistory
|
|
{
|
|
public const ID_PREFIX = 'his_file_';
|
|
|
|
public function init()
|
|
{
|
|
parent::init();
|
|
|
|
$this->setDecorators(
|
|
[
|
|
['ViewScript', ['viewScript' => 'form/edit-history-file.phtml']],
|
|
]
|
|
);
|
|
}
|
|
|
|
public function createFromTemplate($template, $required)
|
|
{
|
|
parent::createFromTemplate($template, $required);
|
|
}
|
|
}
|