function mlpanels_init in Multilingual Panels 7
Implements hook_init().
File
- ./
mlpanels.module, line 19 - Multilingual panels.
Code
function mlpanels_init() {
// Preload both renderers if IPE exists.
if (module_exists('panels_ipe')) {
ctools_include('plugins');
$editor = ctools_get_plugins('panels', 'display_renderers', 'editor');
$renderer = ctools_get_plugins('panels', 'display_renderers', 'standard');
}
}