mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
58 lines
1.2 KiB
PHP
58 lines
1.2 KiB
PHP
<?php namespace Visiosoft\AdvsModule;
|
|
|
|
use Anomaly\Streams\Platform\Addon\Module\Module;
|
|
|
|
class AdvsModule extends Module
|
|
{
|
|
|
|
/**
|
|
* The navigation display flag.
|
|
*
|
|
* @var bool
|
|
*/
|
|
protected $navigation = true;
|
|
|
|
/**
|
|
* The addon icon.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $icon = 'fa fa-plus-circle';
|
|
|
|
/**
|
|
* The module sections.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $sections = [
|
|
'advs' => [
|
|
'buttons' => [
|
|
'new_adv' => [
|
|
'href' => "/advs/create_adv",
|
|
],
|
|
'extend_all' => [
|
|
'href' => "/admin/advs/extendAll",
|
|
'icon' => 'fa fa-calendar',
|
|
'type' => 'info'
|
|
],
|
|
],
|
|
],
|
|
'assets_clear' => [
|
|
'title' => 'visiosoft.module.advs::section.assets_clear.name',
|
|
'href' => '/admin/assets/clear',
|
|
]
|
|
// 'custom_fields' => [
|
|
// 'buttons' => [
|
|
// 'new_custom_field',
|
|
// ],
|
|
// ],
|
|
// 'custom_field_advs' => [
|
|
// // 'buttons' => [
|
|
// // 'new_custom_field_adv',
|
|
// // ],
|
|
// ],
|
|
|
|
];
|
|
|
|
}
|