$key, "label" => $mod_list_strings_key_to_lower[$key]); } //now create array of panels to hide for use in Drag and Drop widget $disabled = array(); foreach ($hidpanels_arr as $key) { if(empty($key)) continue; $key = strtolower($key); $disabled[] = array("module" => $key, "label" => $mod_list_strings_key_to_lower[$key]); } $this->ss->assign('title', $title); $this->ss->assign('description', $mod_strings['LBL_CONFIG_SUBPANELS']); $this->ss->assign('enabled_panels', json_encode($enabled)); $this->ss->assign('disabled_panels', json_encode($disabled)); $this->ss->assign('mod', $mod_strings); $this->ss->assign('APP', $app_strings); //echo get_module_title($mod_strings['LBL_MODULE_NAME'], $mod_strings['LBL_CONFIG_SUBPANELS'], true); echo $this->ss->fetch('modules/Administration/ConfigureSubPanelsForm.tpl'); } ?>