Line # Revision Author
1 296 ahitrov package promosuite::EventSection;
2
3 use Contenido::Section;
4 @ISA = ('Contenido::Section');
5
6 sub extra_properties
7 {
8 return (
9 { 'attr' => 'default_document_class', default => 'promosuite::Event' },
10 )
11 }
12
13 sub class_name
14 {
15 return 'Секция расписания';
16 }
17
18 sub class_description
19 {
20 return 'Секция расписания';
21 }
22
23 1;