Revision 198 (by ahitrov, 2012/03/15 18:29:29) Simple webshop support plugin
package webshop::DeliverySection;

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

sub extra_properties
{
	return (
		{ 'attr' => 'brief',    'type' => 'text',       'rusname' => 'Описание секции' },
		{ 'attr' => 'default_document_class',		'default' => 'webshop::Delivery' },
		{ 'attr' => '_sorted',				'default' => 1 },
		{ 'attr' => 'filters',				'hidden' => 1 },
		{ 'attr' => 'order_by',				'hidden' => 1 },
	)
}

sub class_name
{
	return 'Cпособы доставки';
}

sub class_description
{
	return 'Cпособы доставки';
}

1;