Revision 296 (by ahitrov, 2013/03/26 17:59:01) Promosite (anthill) project source
package promosuite::MultimediaSection;

use Contenido::Section;
@ISA = ('Contenido::Section');

sub extra_properties
{
	 return (
		{ 'attr' => 'show_abstr',	'type' => 'checkbox',	'rusname' => 'Показывать аннотации документов' },
		{ 'attr' => 'abstr',	'type' => 'text',	'rusname' => 'Аннотация', 'rows' => 10 },
		{ 'attr' => 'icon',	'type' => 'image',	'rusname' => 'Фото для выноски', 'preview' => '50x50' },
	)
}

sub class_name
{
	return 'Секция мультимедийных объектов';
}

sub class_description
{
	return 'Секция мультимедийных объектов';
}

1;