home | career | drupal | java | mac | mysql | perl | php | scala | uml | unix

Drupal example source code file (panels_layouts.inc)

This example Drupal source code file (panels_layouts.inc) is included in the DevDaily.com "Drupal Source Code Warehouse" project. The intent of this project is to help you "Learn Drupal by Example".

PHP - Drupal tags/keywords

access, add, admin/structure/panels, array, content, custom, layouts, menu, php, plural, prefix, proper, singular, title

The panels_layouts.inc Drupal example source code

<?php

$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',
  ),
);

Other Drupal examples (source code examples)

Here is a short list of links related to this Drupal panels_layouts.inc source code file:

new blog posts

"Drupal" is a registered trademark of Dries Buytaert.

my drupal tutorials and examples  

Copyright 1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.

Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.