Show
Ignore:
Timestamp:
05/28/08 13:37:32 (22 months ago)
Author:
JensDiemer
Message:

replace the static admin sub menu with a dynamic one ;)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/PyLucid/plugins_internal/filemanager/filemanager_cfg.py

    r1479 r1602  
    1 #!/usr/bin/python 
    21# -*- coding: UTF-8 -*- 
     2 
     3from django.utils.translation import gettext_lazy as _ 
    34 
    45#_____________________________________________________________________________ 
     
    2829plugin_manager_data = { 
    2930    "lucidTag" : global_rights, 
    30     "filelist" : global_rights, 
     31    "filelist" : { 
     32        "must_login"    : True, 
     33        "must_admin"    : True, 
     34        "admin_sub_menu": { 
     35            "section"       : _("miscellaneous"), 
     36            "title"         : _("Filemanager"), 
     37            "help_text"     : _( 
     38                "Administrate static files." 
     39            ), 
     40            "open_in_window": False, 
     41            "weight" : 0, 
     42        }, 
     43    }, 
    3144    "select_basepath": global_rights, 
    3245    "edit": global_rights,