2013-07-09 00:00:02 +02:00
|
|
|
<?php
|
|
|
|
|
2013-08-12 21:06:26 +02:00
|
|
|
class Application_Form_EditHistoryFile extends Application_Form_EditHistory
|
2013-07-09 00:00:02 +02:00
|
|
|
{
|
2021-10-11 16:10:47 +02:00
|
|
|
public const ID_PREFIX = 'his_file_';
|
2013-07-18 07:31:20 +02:00
|
|
|
|
2021-10-11 16:10:47 +02:00
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
parent::init();
|
|
|
|
|
|
|
|
$this->setDecorators(
|
|
|
|
[
|
|
|
|
['ViewScript', ['viewScript' => 'form/edit-history-file.phtml']],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function createFromTemplate($template, $required)
|
|
|
|
{
|
|
|
|
parent::createFromTemplate($template, $required);
|
|
|
|
}
|
|
|
|
}
|