Line # Revision Author
1 3 ahitrov@rambler.ru package @NAME@::SampleDefaultDocument;
2
3 use base 'Contenido::Document';
4
5 sub extra_properties
6 {
7 return (
8 { 'attr' => 'body', 'type' => 'text', 'rusname' => '���� ������' },
9 { 'attr' => 'images', 'type' => 'images', 'rusname' => '��������' },
10 )
11 }
12
13 sub class_name
14 {
15 return '������� ��������';
16 }
17
18 sub class_description
19 {
20 return '����� ������� �����. ������������ ��� �������� ����� ������� ���������� (����� � ��������). �������� �������, ������������ �� ���������.';
21 }
22
23
24 1;