More tidying.
[yaffs-website] / web / modules / contrib / layout_plugin / layout_plugin.api.php
1 <?php
2
3 /**
4  * @file
5  * Hooks provided by the Layout Plugin module.
6  */
7
8 /**
9  * @addtogroup hooks
10  * @{
11  */
12
13 /**
14  * Allow modules to alter layout plugin definitions.
15  *
16  * @param array[] $definitions
17  *   The array of layout definitions, keyed by plugin ID.
18  */
19 function hook_layout_alter(&$definitions) {
20   // Remove a layout.
21   unset($definitions['twocol']);
22 }
23
24 /**
25  * @} End of "addtogroup hooks".
26  */