| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: export-ui.menu.inc,v 1.1.2.2 2010/07/21 23:04:59 merlinofchaos Exp $ 3 4 /** 5 * Delegated implementation of hook_menu(). 6 */ 7 function ctools_export_ui_menu(&$items) { 8 ctools_include('export-ui'); 9 10 foreach (ctools_get_export_uis() as $plugin) { 11 if ($plugin['has menu']) { 12 $handler = ctools_export_ui_get_handler($plugin); 13 if ($handler) { 14 $handler->hook_menu($items); 15 } 16 } 17 } 18 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |