You are here

panels_layouts.inc in Panels 7.3

Same filename and directory in other branches
  1. 6.3 plugins/export_ui/panels_layouts.inc

File

plugins/export_ui/panels_layouts.inc
View source
<?php

/**
 * @file
 */
$plugin = array(
  'schema' => 'panels_layout',
  'access' => 'administer panels layouts',
  'menu' => array(
    'menu prefix' => 'admin/structure/panels',
    'menu item' => 'layouts',
    'menu title' => 'Layouts',
    'menu description' => 'Add, edit or delete custom content layouts.',
  ),
  'title singular' => t('layout'),
  'title singular proper' => t('Layout'),
  'title plural' => t('layouts'),
  'title plural proper' => t('Layouts'),
  'handler' => array(
    'class' => 'panels_layouts_ui',
  ),
);