module WebResource
  OrbitApp.registration "WebResource",:type=> 'ModuleApp' do
    module_label 'link'
    base_url File.expand_path File.dirname(__FILE__)    
    # personal_plugin :enable => true,:path=>"panel/web_resource/plugin/profile",:i18n=>'admin.web_resource'
    
    version "0.1"
    organization "Rulingcom"
    author "RD dep"
    intro "I am intro"
    update_info 'some update_info'

    front_end do
      app_page 'web_links' do 
        frontend_i18n "web_resource.frontend.web_link"
      end
    end

    authorizable
    categorizable
    taggable

    widgets do
      # default_widget do
      #   query 'Bulletin.all'
      #   image :image
      # end

      categories_query 'WebLinkCategory.all'
      tags_query 'WebResourceTag.all'

      customize_widget "index" do 
        widget_i18n "web_resource.widget.index"
      end
    end
    
    side_bar do
      head_label_i18n  'link',:icon_class=>"icons-link"
      available_for [:admin,:guest,:manager,:sub_manager]
      active_for_controllers ({:private=>['web_links', 'web_link_categorys','module_tags', 'categories']})
      active_for_object_auth ['WebLinkCategory'] 

      head_link_path "panel_web_resource_back_end_web_links_path"

      context_link 'list_',
                            :link_path=>"panel_web_resource_back_end_web_links_path" ,
                            :priority=>1,
                            :active_for_action=>{:web_links=>:index},
                            :available_for => [:all]

      context_link 'add', 
                            :link_path=>"new_panel_web_resource_back_end_web_link_path" ,
                            :priority=>2,
                            :active_for_action=>{:web_links=>:new},
                            :available_for => [:sub_manager]
      context_link 'categories',
                            :link_path=>"admin_module_app_categories_path(get_module_app)" ,
                            :priority=>3,
                            :active_for_category => 'WebResource',
                            :available_for => [:manager]

      context_link 'tags',
                            :link_path=>"admin_module_tags_path(:module_app_id => ModuleApp.first(conditions: {title: 'WebResource'}))" ,
                            :priority=>4,
                            :active_for_tag => 'WebResource',
                            :available_for => [:manager]
    end
  end
end