mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
23 lines
443 B
PHP
23 lines
443 B
PHP
<?php namespace Visiosoft\LocationModule;
|
|
|
|
use Anomaly\Streams\Platform\Addon\Module\Module;
|
|
|
|
class LocationModule extends Module
|
|
{
|
|
protected $navigation = true;
|
|
|
|
protected $icon = 'fa fa-location-arrow';
|
|
|
|
protected $sections = [
|
|
'countries' => [
|
|
'buttons' => [
|
|
'new_country',
|
|
],
|
|
],
|
|
'cities',
|
|
'districts',
|
|
'neighborhoods',
|
|
'village',
|
|
];
|
|
}
|