I am making a new panel layout. I have copied from a layout that works and made adjustments to the inc, tpl and css files.
In the admin system, I can select the layout on the Layout screen, but when I go to the Content screen, the panels are not showing up as expected. As a result, I cannot add content to the panels.
My inc file is as follows:
<?php
// Plugin definition
$plugin = array(
'title' => t('Top Level New'),
'category' => t('-New Layouts-'),
'icon' => 'toplevel_new.png',
'theme' => 'toplevel_new',
'css' => 'toplevel_new.css',
'panels' => array(
'row1col1-6' => t('Row 1 Column 1-6 (Slideshow)'),
'row2col1-3' => t('Row 2 Column 1-3 (Destinations)'),
'row2col4-6' => t('Row 2 Column 4-6 (New to Sailing)'),
'row3col1-2' => t('Row 3 Columns 1-2 (Holiday 1)'),
'row3col3-4' => t('Row 3 Columns 3-4 (Holiday 2)'),
'row3col5-6' => t('Row 3 Columns 5-6 (Holiday 3)'),
'row4col1' => t('Row 4 Column 1 (Feature 1)'),
'row4col2' => t('Row 4 Column 2 (Feature 2)'),
'row4col3' => t('Row 4 Column 3 (Feature 3)'),
'row4col4' => t('Row 4 Column 4 (Feature 4)'),
'row5col1' => t('Row 5 Column 1 (Brochure)'),
'row5col2' => t('Row 5 Column 2 (Newsletter)'),
'row5col3' => t('Row 5 Column 3 (Schools)'),