52 lines
1.9 KiB
Ruby
52 lines
1.9 KiB
Ruby
module Property
|
|
class Engine < ::Rails::Engine
|
|
initializer "property" do
|
|
OrbitApp.registration "Property", :type => "ModuleApp" do
|
|
module_label "property.property"
|
|
base_url File.expand_path File.dirname(__FILE__)
|
|
widget_methods ["widget"]
|
|
widget_settings [{"data_count"=>10}]
|
|
taggable "PropertyItem"
|
|
categorizable
|
|
authorizable
|
|
frontend_enabled
|
|
data_count 1..10
|
|
side_bar do
|
|
head_label_i18n 'property.property', icon_class: "icons-megaphone"
|
|
available_for "users"
|
|
active_for_controllers (['admin/property_items'])
|
|
head_link_path "admin_property_items_path"
|
|
|
|
context_link 'all',
|
|
:link_path=>"admin_property_items_path" ,
|
|
:priority=>1,
|
|
:active_for_action=>{'admin/property_items'=>'index'},
|
|
:available_for => 'users'
|
|
|
|
context_link 'new_',
|
|
:link_path=>"new_admin_property_item_path" ,
|
|
:priority=>2,
|
|
:active_for_action=>{'admin/property_items'=>"new"},
|
|
:available_for => 'sub_managers'
|
|
|
|
context_link 'categories',
|
|
:link_path=>"admin_module_app_categories_path" ,
|
|
:link_arg=>"{:module_app_id=>ModuleApp.find_by(:key=>'property').id}",
|
|
:priority=>3,
|
|
:active_for_action=>{'admin/property_items'=>'categories'},
|
|
:active_for_category => 'Property',
|
|
:available_for => 'managers'
|
|
|
|
context_link 'tags',
|
|
:link_path=>"admin_module_app_tags_path" ,
|
|
:link_arg=>"{:module_app_id=>ModuleApp.find_by(:key=>'property').id}",
|
|
:priority=>4,
|
|
:active_for_action=>{'admin/property_items'=>'tags'},
|
|
:active_for_tag => 'Property',
|
|
:available_for => 'managers'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|