Changeset 11100
- Timestamp:
- 07/05/07 22:01:19 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/midcom.admin.styleeditor/handler/edit.php
r6089 r11100 87 87 ); 88 88 89 89 90 $_MIDCOM->set_custom_context_data('midcom.helper.nav.breadcrumb', $tmp); 90 91 } … … 170 171 { 171 172 $this->_topic->require_do('midcom.admin.styleeditor:template_management'); 173 174 $this->_view_toolbar->add_item 175 ( 176 array 177 ( 178 MIDCOM_TOOLBAR_URL => "__mfa/styleeditor/create/", 179 MIDCOM_TOOLBAR_LABEL => $_MIDCOM->i18n->get_string('create new element', 'midcom.admin.styleeditor'), 180 MIDCOM_TOOLBAR_ICON => 'stock-icons/16x16/text-x-generic-template.png', 181 ) 182 ); 183 $this->_view_toolbar->add_item 184 ( 185 array 186 ( 187 MIDCOM_TOOLBAR_URL => "__mfa/styleeditor/files/", 188 MIDCOM_TOOLBAR_LABEL => $_MIDCOM->i18n->get_string('style attachments', 'midcom.admin.styleeditor'), 189 MIDCOM_TOOLBAR_ICON => 'stock-icons/16x16/attach.png', 190 ) 191 ); 192 193 172 194 173 195 $data['style_element'] = $args[0]; trunk/midcom/midcom.admin.styleeditor/handler/list.php
r6089 r11100 114 114 array 115 115 ( 116 MIDCOM_TOOLBAR_URL => "__mfa/styleeditor/create/", 117 MIDCOM_TOOLBAR_LABEL => $_MIDCOM->i18n->get_string('create new element', 'midcom.admin.styleeditor'), 118 MIDCOM_TOOLBAR_ICON => 'stock-icons/16x16/text-x-generic-template.png', 119 ) 120 ); 121 $this->_view_toolbar->add_item 122 ( 123 array 124 ( 116 125 MIDCOM_TOOLBAR_URL => "__mfa/styleeditor/files/", 117 126 MIDCOM_TOOLBAR_LABEL => $_MIDCOM->i18n->get_string('style attachments', 'midcom.admin.styleeditor'), … … 120 129 ); 121 130 122 $this->_view_toolbar->add_item 123 ( 124 array 125 ( 126 MIDCOM_TOOLBAR_URL => "__mfa/styleeditor/create/", 127 MIDCOM_TOOLBAR_LABEL => $_MIDCOM->i18n->get_string('create new element', 'midcom.admin.styleeditor'), 128 MIDCOM_TOOLBAR_ICON => 'stock-icons/16x16/text-x-generic-template.png', 129 ) 130 ); 131 131 132 // Set the variables 132 133 $this->_component = $this->_topic->component;
