Line # Revision Author
1 296 ahitrov package promosuite::MultimediaSection;
2
3 use Contenido::Section;
4 @ISA = ('Contenido::Section');
5
6 sub extra_properties
7 {
8 return (
9 { 'attr' => 'show_abstr', 'type' => 'checkbox', 'rusname' => 'Показывать аннотации документов' },
10 { 'attr' => 'abstr', 'type' => 'text', 'rusname' => 'Аннотация', 'rows' => 10 },
11 { 'attr' => 'icon', 'type' => 'image', 'rusname' => 'Фото для выноски', 'preview' => '50x50' },
12 )
13 }
14
15 sub class_name
16 {
17 return 'Секция мультимедийных объектов';
18 }
19
20 sub class_description
21 {
22 return 'Секция мультимедийных объектов';
23 }
24
25 1;