Projet

Général

Profil

Paste
Télécharger (5,49 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / panels / help / plugins-layout.html @ 136a805a

1
<h2>Getting Started:</h2>
2
<p>Layout plugins are one of the simplest and most powerful sections of the Panels API. There are two different ways that a layout can be implemented via Panels. Panels supports both module and theme implementations of Panels. The module implementation requires that hook_ctools_plugin_directory define the directory in which your layout plugins exist. (This same hook defines the directory for all Panels plugins) Alternately, if you intend on implementing a layout in a theme this can be done primary through the theme's info file. The CTools help does a great job of actually explaining this portion of the API <a href="topic:ctools/plugins-implementing">ctools: plugins</a>.</p>
3

    
4
<p>For purposes of this example, our module name is going to be "layout_sample" and our plugin will be "first_layout".</p>
5

    
6
<h2>Directory Structure:</h2>
7
<p>We're going to assume that you've laid your directory structure out very similarly to how panels does it. Something like this is rather likely:
8
<pre>layout_sample
9
  layout_sample.info
10
  layout_sample.module
11
  plugins
12
    layouts
13
      first_layout
14
        first_layout.css
15
        first_layout.inc
16
        first_layout.png
17
        layout-sample-first-layout.tpl.php</pre>
18
The name of our .inc file is going to be the key to the entire layout plugin.</p>
19

    
20
<h2>The .module File:</h2>
21
<p>First, declare where your custom layouts reside by implementing the CTools hook <code>hook_ctools_plugin_directory()</code>:
22
<pre>
23
/**
24
 * Implements hook_ctools_plugin_directory().
25
 */
26
function layout_sample_ctools_plugin_directory($module, $plugin) {
27
  if ($module == 'panels' && $plugin == 'layouts') {
28
    return 'plugins/layouts';
29
  }
30
}
31
</pre>
32

    
33
<h2>The .inc File:</h2>
34
<p>We will start with the first_layout.inc file as it's the most important file we're dealing with here. First_layout.inc will look similar to the following:
35
<pre>
36
  $plugin = array(
37
    'title' => t('First Layout'),
38
    'icon' => 'first_layout.png',
39
    'theme' => 'layout_sample_first_layout',
40
    'css' => 'first_layout.css',
41
    'panels' => array(
42
      'main' => t('Main region'),
43
      'right' => t('Right region'),
44
    ),
45
  );
46
</pre>
47
The include file defines all the other files that our layout will utilize in order to be truly useful. The array is fairly self explanitory but for the sake of specificity:
48
<ol>
49
<li><strong>Title:</strong><br />The title of our layout. (Utilized within the panels administration screens)</li>
50
<li><strong>Icon:</strong><br />The graphical representation of our layout. (Utilized within the panels administration screens)</li>
51
<li><strong>Theme:</strong><br />The template file of our layout. (Sharp eyed readers will note that the theme definition utilizes underscores instead of dashes, and does not have ".tpl.php" after it. This is referring to the layout-sample-first-layout.tpl.php file all the same, it is simply how the naming convention works. Utilize dashes in the tpl file name and underscores when referring to it in your include file.)</li>
52
<li><strong>CSS:</strong><br />The css file to be utilized for our layout. (Utilized within the panels administration screens, AND when viewing the actual panel itself.)</li>
53
<li><strong>Panels:</strong><br />Defines all the various regions within your panel. This will be further utilized within our tpl.php file.</li>
54
</ol>
55
There are many additional properties that can be added to the include file. For purposes of this document we'll also make mention of the 'admin css' property. 'Admin css' is especially useful when utilizing a fixed width layout with fixed with panel regions. This can break under most administrative circumstances, and panels provides you with the ability to give an additional css layout for the administrative section. It's a simple nicety and looks like this:
56
<pre>
57
  $plugin = array(
58
    'title' => t('First Layout'),
59
    'icon' => 'first_layout.png',
60
    'theme' => 'layout_sample_first_layout',
61
    'css' => 'first_layout.css',
62
    'admin css' => 'first_layout_admin.css',
63
    'panels' => array(
64
      'main' => t('Main region'),
65
      'right' => t('Right region'),
66
    ),
67
  );
68
</pre>
69
</p>
70

    
71
<h2>The tpl.php File:</h2>
72
<p>The tpl.php file is very similar to any other template file within drupal. The difference here is that we're being passed an array of regions through $content, and we also have a css id available to us for the entire panel in the form of $css_id. The template is very straight forward and will look similar to the following:
73
<pre>&lt;div class="panel-display panel-stacked-twothirds-onethird clearfix" &lt;?php if (!empty($css_id)) { print "id=\"$css_id\""; } ?&gt;&gt;
74
  &lt;div class="panel-panel panel-col-first panel-region-main"&gt;
75
    &lt;div class="inside"&gt;&lt;?php print $content['main']; ?&gt;&lt;/div&gt;
76
  &lt;/div&gt;
77

    
78
  &lt;div class="panel-panel panel-col-last panel-region-right"&gt;
79
    &lt;div class="inside"&gt;&lt;?php print $content['right']; ?&gt;&lt;/div&gt;
80
  &lt;/div&gt;
81
&lt;/div&gt;
82
</pre>
83
This is simply an example of what the html could look like. You can alter an update this html to fit your own needs.
84
</p>
85

    
86
<h2>The Other Files:</h2>
87
<p>The css and png files are as simple as any other css or png file you've ever utilized. Panels provides some images for its graphical representations of its layouts. I would heavily encourage you to modify these to suit your needs. The CSS files (admin and non) will be included at the appropriate times. Simply set them up to fit your purposes. If you're utilizing fixed width panel regions it's probably smart to provide an admin css file as well with your panel layout.</p>