first import
This commit is contained in:
2
sites/all/modules/styles/contrib/styles_ui/README.txt
Normal file
2
sites/all/modules/styles/contrib/styles_ui/README.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
README for Styles UI
|
354
sites/all/modules/styles/contrib/styles_ui/styles_ui.admin.inc
Normal file
354
sites/all/modules/styles/contrib/styles_ui/styles_ui.admin.inc
Normal file
@@ -0,0 +1,354 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Administrative page callbacks for the Styles UI module.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Page callback for various styles overview listing pages.
|
||||
*/
|
||||
function styles_ui_containers_overview($field_type) {
|
||||
// Get the full list of styles.
|
||||
$styles = styles_default_styles();
|
||||
|
||||
// Get the containers for this field type.
|
||||
$styles_containers = styles_default_containers();
|
||||
$field_containers = $styles_containers[$field_type];
|
||||
|
||||
// Build our table listing of styles.
|
||||
$header = array(t('Styles'), array('data' => t('Operations'), 'colspan' => 2));
|
||||
$rows = array();
|
||||
|
||||
foreach ($styles[$field_type]['styles'] as $style_name => $style) {
|
||||
// What's the path to edit this style?
|
||||
$edit_path = $field_containers['admin']['path'] . '/edit/' . $style_name;
|
||||
$row = array(l(t('@style', array('@style' => $style_name)), $edit_path));
|
||||
|
||||
// Add our ops.
|
||||
if ($style['storage'] == STYLES_STORAGE_NORMAL) {
|
||||
$row[] = array('data' => l(t('edit'), $edit_path));
|
||||
$row[] = array('data' => l(t('delete'), $field_containers['admin']['path'] . '/delete/' . $style_name));
|
||||
}
|
||||
else if ($style['storage'] == STYLES_STORAGE_OVERRIDE) {
|
||||
$row[] = array('data' => l(t('edit'), $edit_path));
|
||||
$row[] = array('data' => l(t('revert'), $field_containers['admin']['path'] . '/delete/' . $style_name));
|
||||
}
|
||||
else {
|
||||
$row[] = array('data' => l(t('edit'), $edit_path), 'colspan' => 2);
|
||||
}
|
||||
$rows[] = $row;
|
||||
}
|
||||
|
||||
// Add a new style link to the empty table.
|
||||
// Note that the link at the top of the page is placed in hook_menu.
|
||||
$field_info = field_info_field_types($field_type);
|
||||
$field_label = $field_info['label'];
|
||||
$title = 'Add ' . $field_label . ' style';
|
||||
|
||||
$build['styles_table'] = array(
|
||||
'#theme' => 'table',
|
||||
'#header' => $header,
|
||||
'#rows' => $rows,
|
||||
'#empty' => t('No styles available. <a href="@link">@add</a>.', array('@add' => t($title), '@link' => url($field_containers['admin']['path'] . '/add'))),
|
||||
);
|
||||
|
||||
return $build;
|
||||
}
|
||||
|
||||
/**
|
||||
* Page callback for adding a style.
|
||||
*/
|
||||
function styles_ui_style_add_form($form, $form_state, $field_type) {
|
||||
$form = array();
|
||||
$form['field_type'] = array(
|
||||
'#type' => 'value',
|
||||
'#value' => $field_type,
|
||||
);
|
||||
$form['name'] = array(
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Style name'),
|
||||
'#description' => t('Enter the name of your desired style, which must be a unique name containing only alphanumeric characters and underscores.'),
|
||||
);
|
||||
$form['submit'] = array(
|
||||
'#type' => 'submit',
|
||||
'#value' => t('Save'),
|
||||
);
|
||||
return $form;
|
||||
}
|
||||
|
||||
/**
|
||||
* Validation handler for the add style form.
|
||||
*/
|
||||
function styles_ui_style_add_form_validate($form, $form_state) {
|
||||
$field_type = $form_state['values']['field_type'];
|
||||
$style_name = $form_state['values']['name'];
|
||||
$styles = styles_default_styles();
|
||||
if (!preg_match('!^[a-z0-9_]+$!', $style_name)) {
|
||||
form_set_error('style_name', t('The machine-readable style name must contain only lowercase letters, numbers, and underscores.'));
|
||||
}
|
||||
else if (!empty($styles[$field_type]['styles'][$style_name])) {
|
||||
form_set_error('style_name', t('The machine-readable style name %style_name is already taken.', array('%style_name' => $style_name)));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Submission handler for the add style form.
|
||||
*/
|
||||
function styles_ui_style_add_form_submit(&$form, &$form_state) {
|
||||
$field_type = $form_state['values']['field_type'];
|
||||
$style_name = $form_state['values']['name'];
|
||||
$style = array(
|
||||
'field_type' => $field_type,
|
||||
'name' => $style_name,
|
||||
'description' => '',
|
||||
);
|
||||
// Save the new style.
|
||||
styles_style_save($style);
|
||||
|
||||
// Get the containers for this field type.
|
||||
$styles_containers = styles_default_containers();
|
||||
$field_containers = $styles_containers[$field_type];
|
||||
|
||||
// Redirect to this style's edit page.
|
||||
$form_state['redirect'] = $field_containers['admin']['path'] . '/edit/' . $style_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Callback for the style edit form.
|
||||
*/
|
||||
function styles_ui_style_edit_form($form, $form_state, $field_type, $style_name) {
|
||||
$style = styles_style_load($field_type, $style_name);
|
||||
|
||||
$form['field_type'] = array(
|
||||
'#type' => 'value',
|
||||
'#value' => $field_type,
|
||||
);
|
||||
$form['old_style_name'] = array(
|
||||
'#type' => 'value',
|
||||
'#value' => $style['name'],
|
||||
);
|
||||
|
||||
$form['name'] = array(
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Name'),
|
||||
'#description' => t('The name of this style, which must be a unique name containing only alphanumeric characters and underscores.'),
|
||||
'#default_value' => $style['name'],
|
||||
'#required' => TRUE,
|
||||
);
|
||||
$form['description'] = array(
|
||||
'#type' => 'textarea',
|
||||
'#title' => t('Description'),
|
||||
'#description' => t('The description of the style.'),
|
||||
'#default_value' => $style['description'],
|
||||
);
|
||||
|
||||
$form['containers'] = array(
|
||||
'#type' => 'vertical_tabs',
|
||||
'#tree' => TRUE,
|
||||
);
|
||||
$containers = styles_default_containers($field_type);
|
||||
$presets = styles_default_presets($field_type);
|
||||
foreach ($containers['containers'] as $container_name => $container) {
|
||||
$style = $presets['containers'][$container_name]['styles'][$style_name];
|
||||
$container_label = isset($container['label']) ? $container['label'] : $container_name;
|
||||
$form['containers'][$container_name] = array(
|
||||
'#type' => 'fieldset',
|
||||
'#title' => t('@container', array('@container' => $container_label)),
|
||||
);
|
||||
$options = array();
|
||||
foreach ($presets['containers'][$container_name]['presets'] as $preset_name => $preset) {
|
||||
$options[$preset_name] = t('@preset', array('@preset' => $preset_name));
|
||||
}
|
||||
$default_value = isset($presets['containers'][$container_name]['styles'][$style_name]['preset']) ? $presets['containers'][$container_name]['styles'][$style_name]['preset'] : (isset($presets['containers'][$container_name]['styles'][$style_name]['default preset']) ? $presets['containers'][$container_name]['styles'][$style_name]['default preset'] : $presets['containers'][$container_name]['default preset']);
|
||||
$form['containers'][$container_name]['preset'] = array(
|
||||
'#type' => 'select',
|
||||
'#title' => t('Preset'),
|
||||
'#options' => $options,
|
||||
'#default_value' => $default_value,
|
||||
);
|
||||
$form['containers'][$container_name]['default_preset'] = array(
|
||||
'#type' => 'item',
|
||||
'#title' => t('Default preset'),
|
||||
'#markup' => t('%preset', array('%preset' => $style['default preset'])),
|
||||
);
|
||||
if (isset($container['preview'])) {
|
||||
$form['containers'][$container_name]['preview'] = array(
|
||||
'#type' => 'item',
|
||||
'#title' => t('Preview'),
|
||||
'#markup' => theme($container['preview'], array('style_name' => $style_name)),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
$form['submit'] = array(
|
||||
'#type' => 'submit',
|
||||
'#value' => t('Save'),
|
||||
);
|
||||
return $form;
|
||||
// $field_info = field_info_field_types($field_type);
|
||||
// $presets = styles_default_presets();
|
||||
// $preset = $presets[$field_type]['containers'][$preset_name];
|
||||
// $styles_containers = styles_default_containers();
|
||||
// $containers = $styles_containers[$field_type]['containers'];
|
||||
// drupal_set_title(t('Edit @field_type style preset: @preset', array('@field_type' => $field_info['label'], '@preset' => $preset_name)));
|
||||
// $form = array();
|
||||
// $form['containers'] = array(
|
||||
// '#type' => 'vertical_tabs',
|
||||
// );
|
||||
// $styles = styles_default_styles($field_type);
|
||||
// dpm($styles);
|
||||
//
|
||||
// // Begin the settings array to send to jQuery.
|
||||
// $settings = array(
|
||||
// 'stylesUI' => array(
|
||||
// 'url' => url('styles-ui/preview'),
|
||||
// 'fieldType' => check_plain($field_type),
|
||||
// ),
|
||||
// );
|
||||
// foreach ($styles['styles'] as $style_name => $style) {
|
||||
// $form['containers'][$style_name] = array(
|
||||
// '#type' => 'fieldset',
|
||||
// '#title' => $style['label'],
|
||||
// );
|
||||
// if (isset($preset['styles'][$style_name]['current preset'])) {
|
||||
// $this_preset = $preset['styles'][$style_name]['current preset'];
|
||||
// }
|
||||
// else {
|
||||
// $this_preset = $preset['styles'][$style_name]['default preset'];
|
||||
// }
|
||||
// $options = array();
|
||||
// foreach ($preset['presets'] as $preset_style_name => $effects) {
|
||||
// $options[$preset_style_name] = $preset_style_name;
|
||||
// }
|
||||
//
|
||||
// // Store the container in the 'rel' attribute for later AJAX previews.
|
||||
// $rel = check_plain($style_name);
|
||||
// $form['containers'][$style_name]['preset_' . $style_name] = array(
|
||||
// '#type' => 'radios',
|
||||
// '#title' => t('Style effects preset'),
|
||||
// '#default_value' => $this_preset,
|
||||
// '#options' => $options,
|
||||
// '#attributes' => array('class' => array('styles-ui-preset'), 'rel' => $rel),
|
||||
// );
|
||||
// // Add a preview.
|
||||
// if (isset($styles_containers[$field_type]['themes']) && isset($styles_containers[$field_type]['themes']['preview'])) {
|
||||
// $preview = '<div id="styles-ui-preview-wrapper-' . $rel . '" class="styles-ui-preview-wrapper">' . theme($styles_containers[$field_type]['themes']['preview'], array('field_type' => $field_type, 'container_name' => $style_name, 'style_name' => $this_preset)) . '</div>';
|
||||
// $form['containers'][$style_name]['preview_' . $style_name] = array(
|
||||
// '#type' => 'item',
|
||||
// '#title' => t('Style preview'),
|
||||
// '#markup' => $preview,
|
||||
// );
|
||||
// }
|
||||
// }
|
||||
// // Add the javascript for live previews on radio select.
|
||||
// $form['#attached'] = array(
|
||||
// 'js' => array(drupal_get_path('module', 'styles_ui') . '/styles_ui.js'),
|
||||
// );
|
||||
// drupal_add_js($settings, array('type' => 'setting'));
|
||||
// return $form;
|
||||
}
|
||||
|
||||
/**
|
||||
* Validation handler for the edit style form.
|
||||
*/
|
||||
function styles_ui_style_edit_form_validate($form, $form_state) {
|
||||
$field_type = $form_state['values']['field_type'];
|
||||
$style_name = $form_state['values']['name'];
|
||||
$old_style_name = $form_state['values']['old_style_name'];
|
||||
$styles = styles_default_styles();
|
||||
if (!preg_match('!^[a-z0-9_]+$!', $style_name)) {
|
||||
form_set_error('style_name', t('The machine-readable style name must contain only lowercase letters, numbers, and underscores.'));
|
||||
}
|
||||
else if (($style_name != $old_style_name) && !empty($styles[$field_type]['styles'][$style_name])) {
|
||||
form_set_error('style_name', t('The machine-readable style name %style_name is already taken.', array('%style_name' => $style_name)));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Submission handler for the add style form.
|
||||
*/
|
||||
function styles_ui_style_edit_form_submit(&$form, &$form_state) {
|
||||
$field_type = $form_state['values']['field_type'];
|
||||
$style_name = $form_state['values']['name'];
|
||||
$style = array(
|
||||
'field_type' => $field_type,
|
||||
'name' => $style_name,
|
||||
'description' => $form_state['values']['description'],
|
||||
);
|
||||
// Save the new style.
|
||||
styles_style_save($style);
|
||||
|
||||
// Get the containers for this field type.
|
||||
$styles = styles_default_presets($field_type);
|
||||
$containers = styles_default_containers($field_type);
|
||||
|
||||
foreach ($form_state['values']['containers'] as $container_name => $container) {
|
||||
if (is_array($container)) {
|
||||
$default_preset = isset($styles['containers'][$container_name]['styles'][$style_name]['default preset']) ? $styles['containers'][$container_name]['styles'][$style_name]['default preset'] : $styles['containers'][$container_name]['default preset'];
|
||||
$delete_only = ($default_preset == $container['preset']);
|
||||
styles_style_save_preset($field_type, $container_name, $style_name, $container['preset'], $delete_only);
|
||||
}
|
||||
}
|
||||
|
||||
// Redirect to this style's edit page.
|
||||
$form_state['redirect'] = $containers['admin']['path'] . '/edit/' . $style_name;
|
||||
}
|
||||
|
||||
function styles_ui_preview_ajax($field_type, $container_name, $preset_name) {
|
||||
$styles_containers = styles_default_containers();
|
||||
$containers = $styles_containers[$field_type]['containers'];
|
||||
drupal_json_output(array(
|
||||
'id' => '#styles-ui-preview-wrapper-' . check_plain($container_name),
|
||||
'preview' => theme($containers[$container_name]['themes']['preview'], array('field_type' => $field_type, 'container_name' => $container_name, 'style_name' => $preset_name)),
|
||||
));
|
||||
die();
|
||||
}
|
||||
|
||||
/**
|
||||
* Menu callback; delete a style.
|
||||
*/
|
||||
function styles_ui_delete_confirm($form, &$form_state, $field_type, $style_name) {
|
||||
$form['field_type'] = array(
|
||||
'#type' => 'value',
|
||||
'#value' => $field_type,
|
||||
);
|
||||
$form['style_name'] = array(
|
||||
'#type' => 'value',
|
||||
'#value' => $style_name,
|
||||
);
|
||||
|
||||
$styles = styles_default_styles($field_type);
|
||||
$style = $styles['styles'][$style_name];
|
||||
if ($style['storage'] == STYLES_STORAGE_OVERRIDE) {
|
||||
$delete = 'revert';
|
||||
}
|
||||
else {
|
||||
$delete = 'delete';
|
||||
}
|
||||
|
||||
$caption = '<p>' . t('This action cannot be undone.') . '</p>';
|
||||
|
||||
$containers = styles_default_containers($field_type);
|
||||
$cancel_path = $containers['admin']['path'];
|
||||
$form['containers'] = array(
|
||||
'#type' => 'value',
|
||||
'#value' => $containers,
|
||||
);
|
||||
|
||||
$message = t('Are you sure you want to @delete the %field_type style %style_name?', array('@delete' => $delete, '%field_type' => $field_type, '%style_name' => $style_name));
|
||||
|
||||
return confirm_form($form, $message, $cancel_path, $caption, t('@delete', array('@delete' => ucfirst($delete))));
|
||||
}
|
||||
|
||||
/**
|
||||
* Process style delete confirm submissions.
|
||||
*/
|
||||
function styles_ui_delete_confirm_submit($form, &$form_state) {
|
||||
$field_type = $form_state['values']['field_type'];
|
||||
$style_name = $form_state['values']['style_name'];
|
||||
$containers = styles_default_containers($field_type);
|
||||
styles_style_delete($field_type, $style_name);
|
||||
// Redirect to this style's edit page.
|
||||
$form_state['redirect'] = $containers['admin']['path'];
|
||||
}
|
14
sites/all/modules/styles/contrib/styles_ui/styles_ui.info
Normal file
14
sites/all/modules/styles/contrib/styles_ui/styles_ui.info
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
name = Styles UI
|
||||
description = Allows administration of the Styles modules.
|
||||
package = Styles
|
||||
core = 7.x
|
||||
files[] = styles_ui.admin.inc
|
||||
dependencies[] = styles
|
||||
|
||||
; Information added by drupal.org packaging script on 2011-06-01
|
||||
version = "7.x-2.0-alpha8"
|
||||
core = "7.x"
|
||||
project = "styles"
|
||||
datestamp = "1306964517"
|
||||
|
44
sites/all/modules/styles/contrib/styles_ui/styles_ui.install
Normal file
44
sites/all/modules/styles/contrib/styles_ui/styles_ui.install
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file styles/contrib/styles_ui/styles_ui.install
|
||||
* Install, update and uninstall functions for the Styles module.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implement hook_install().
|
||||
*/
|
||||
function styles_ui_install() {
|
||||
return array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Implement hook_uninstall().
|
||||
*/
|
||||
function styles_ui_uninstall() {
|
||||
return array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Rebuild styles.
|
||||
*/
|
||||
function styles_ui_update_7200() {
|
||||
cache_clear_all('styles_', 'cache', TRUE);
|
||||
return array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Change themes.
|
||||
*/
|
||||
function styles_ui_update_7201() {
|
||||
drupal_theme_rebuild();
|
||||
return array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Change menu.
|
||||
*/
|
||||
function styles_ui_update_7206() {
|
||||
menu_rebuild();
|
||||
return array();
|
||||
}
|
27
sites/all/modules/styles/contrib/styles_ui/styles_ui.js
Normal file
27
sites/all/modules/styles/contrib/styles_ui/styles_ui.js
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
/**
|
||||
* @file
|
||||
* jQuery attachment to Styles UI admin pages.
|
||||
*/
|
||||
(function ($) {
|
||||
|
||||
/**
|
||||
* Change the preview on radio change.
|
||||
*/
|
||||
Drupal.behaviors.stylesUI = {
|
||||
attach: function(context, settings) {
|
||||
$('.styles-ui-preset', context).once('stylesUI', function () {
|
||||
$(this).bind('change', function() {
|
||||
$preset = $(this);
|
||||
if ($preset.val()) {
|
||||
$.getJSON(Drupal.settings.stylesUI.url + '/' + Drupal.settings.stylesUI.fieldType + '/' + $preset.attr('rel') + '/' + $preset.val(), function(data){
|
||||
// @TODO: Check for errors.
|
||||
$(data.id).html(data.preview);
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
// end of closure
|
||||
})(jQuery);
|
102
sites/all/modules/styles/contrib/styles_ui/styles_ui.module
Normal file
102
sites/all/modules/styles/contrib/styles_ui/styles_ui.module
Normal file
@@ -0,0 +1,102 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Allows administration of the Styles modules.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Implements hook_menu().
|
||||
*/
|
||||
function styles_ui_menu() {
|
||||
// Each field type Style may choose to allow the Styles module to manage its
|
||||
// UI. To do so, they'll need to create an 'admin' array in its definition
|
||||
// at hook_styles_containers that will contain the path info:
|
||||
// 'path' => The path to the overview listing page,
|
||||
// 'title' => The title for the overview listing page,
|
||||
// 'description' => The description for the overview listing page,
|
||||
// 'access arguments' => The access arguments for the overview listing page,
|
||||
// 'add' => an optional array with the info for adding a new container:
|
||||
// 'title' => The title to add a new container for this field,
|
||||
// 'description' => The discription to add a new container for this field,
|
||||
$items = array();
|
||||
$styles_containers = styles_default_containers();
|
||||
foreach ($styles_containers as $field_type => $containers) {
|
||||
if (isset($containers['admin']) && isset($containers['admin']['path'])) {
|
||||
$field_info = field_info_field_types($field_type);
|
||||
$field_label = $field_info['label'];
|
||||
$title = $field_label . ' styles';
|
||||
$description = 'Configure ' . $field_label . ' styles.';
|
||||
$access = isset($containers['admin']['access arguments']) ? $containers['admin']['access arguments'] : array('administer styles ui');
|
||||
$items[$containers['admin']['path']] = array(
|
||||
'title' => $title,
|
||||
'description' => $description,
|
||||
'access arguments' => $access,
|
||||
'page callback' => 'styles_ui_containers_overview',
|
||||
'page arguments' => array($field_type),
|
||||
'file' => 'styles_ui.admin.inc',
|
||||
);
|
||||
$items[$containers['admin']['path'] . '/list'] = array(
|
||||
'title' => 'List',
|
||||
'type' => MENU_DEFAULT_LOCAL_TASK,
|
||||
'weight' => -10,
|
||||
);
|
||||
$title = 'Add ' . $field_label . ' style';
|
||||
$description = '';
|
||||
$items[$containers['admin']['path'] . '/add'] = array(
|
||||
'title' => $title,
|
||||
'description' => $description,
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('styles_ui_style_add_form', $field_type),
|
||||
'access arguments' => $access,
|
||||
'type' => MENU_LOCAL_ACTION,
|
||||
'file' => 'styles_ui.admin.inc',
|
||||
);
|
||||
$count = substr_count($containers['admin']['path'] . '/edit/%', '/');
|
||||
$items[$containers['admin']['path'] . '/edit/%'] = array(
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('styles_ui_style_edit_form', $field_type, $count),
|
||||
'access arguments' => $access,
|
||||
'file' => 'styles_ui.admin.inc',
|
||||
);
|
||||
$items[$containers['admin']['path'] . '/delete/%'] = array(
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('styles_ui_delete_confirm', $field_type, $count),
|
||||
'access arguments' => $access,
|
||||
'file' => 'styles_ui.admin.inc',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
$items['styles-ui/preview/%/%/%'] = array(
|
||||
'page callback' => 'styles_ui_preview_ajax',
|
||||
'page arguments' => array(2, 3, 4),
|
||||
'access arguments' => array('access content'),
|
||||
'file' => 'styles_ui.admin.inc',
|
||||
'type' => MENU_CALLBACK,
|
||||
);
|
||||
|
||||
return $items;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implement Styles module's hook_styles_style_flush().
|
||||
*/
|
||||
function styles_ui_styles_style_flush($style = NULL) {
|
||||
// Rebuild the menu so that we catch any new styles or containers.
|
||||
menu_rebuild();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Implementation of hook_permission().
|
||||
*/
|
||||
function styles_ui_permission() {
|
||||
return array(
|
||||
'administer styles ui' => array(
|
||||
'title' => t('Administer Styles'),
|
||||
'description' => t('Configure styles settings.'),
|
||||
),
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user