75 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
module Videos
 | 
						|
  OrbitApp.registration "Video",:type=> 'ModuleApp' do
 | 
						|
    module_label 'video.video'
 | 
						|
    base_url File.expand_path File.dirname(__FILE__)    
 | 
						|
    # personal_plugin :enable => true,:path=>"panel/location/plugin/profile",:i18n=>'admin.location'
 | 
						|
    
 | 
						|
     version "0.1"
 | 
						|
     organization "Rulingcom"
 | 
						|
     author "RD dep"
 | 
						|
     intro "I am intro"
 | 
						|
     update_info 'some update_info'
 | 
						|
     #enable_frontend true
 | 
						|
 | 
						|
     front_end do
 | 
						|
       app_page 'channel_videos' do
 | 
						|
          frontend_i18n "video.front_end.channel_videos"
 | 
						|
        end
 | 
						|
     end
 | 
						|
    
 | 
						|
    authorizable
 | 
						|
 | 
						|
    # category ["BulletinCategory"]
 | 
						|
 | 
						|
    # widgets do
 | 
						|
    #   default_widget do
 | 
						|
    #     query 'Bulletin.all'
 | 
						|
    #     image :image
 | 
						|
    #   end
 | 
						|
 | 
						|
    #   categories_query 'BulletinCategory.all'
 | 
						|
    #   tags_query 'LocationTag.all'
 | 
						|
 | 
						|
    #   customize_widget "index","location.widget.index",:fields=>["title","category","postdate"],:style=>["cu_style_1","cu_style_2","cu_style_3","cu_style_4","cu_style_5"]
 | 
						|
    #   customize_widget "bulletins_and_web_links","location.widget.bulletins_and_web_links"
 | 
						|
    #   # item "index","location.widget.index",:default_template=>true,:fields=>["title","category","postdate"]
 | 
						|
    #   # item "bulletins_and_web_links","location.widget.bulletins_and_web_links"
 | 
						|
    # end
 | 
						|
   
 | 
						|
   widgets do
 | 
						|
       #default_widget do
 | 
						|
       #  query 'ChannelVideo.all'
 | 
						|
       #  enable ['typeB_style3', 'typeB_style4']
 | 
						|
      #   field :channel_name
 | 
						|
      #   image :image
 | 
						|
     #  end
 | 
						|
 | 
						|
      # tags_query 'GalleryTag.all'
 | 
						|
 | 
						|
      #* customize_widget "albums","gallery.widget.albums",:fields=>[],:style=>[],:options=>{"widget1"=>{"vertical"=>[1, 2], "horizontal"=>[1, 2, 3, 4, 5, 6], "album_id"=>{"query"=>"GalleryAlbum.all", "value"=>:id, "label"=>:name}}} 
 | 
						|
      #* customize_widget_options_fields_i18n({"widget1"=>{"vertical"=>"gallery.widget_option.vertical", "horizontal"=>"gallery.widget_option.horizontal", "album_id"=>"gallery.album"}} )
 | 
						|
      customize_widget "channel_videos" do 
 | 
						|
        widget_i18n "videos.widget.channel_videos"
 | 
						|
        style ["1","2"]
 | 
						|
        options "channel_videos",:i18n =>"videos.channel_videos",:options_item => {"query"=>"ChannelVideo.all", "value"=>:id, "label"=>:channel_name}
 | 
						|
      end
 | 
						|
 | 
						|
    end
 | 
						|
   
 | 
						|
    
 | 
						|
    side_bar do
 | 
						|
      head_label_i18n  'video.channel',:icon_class=>"icon-facetime-video"
 | 
						|
      available_for [:admin,:guest,:manager,:sub_manager]
 | 
						|
      active_for_controllers ({:private=>['channel_videos', 'videos']})
 | 
						|
 | 
						|
      head_link_path "panel_video_back_end_channel_videos_path"
 | 
						|
 | 
						|
      context_link 'video.channel',
 | 
						|
                            :link_path=>"panel_video_back_end_channel_videos_path" ,
 | 
						|
                            :priority=>1,
 | 
						|
                            :available_for => [:manager]   
 | 
						|
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |