getProperties()) { $plugin_list[] = $plugin; } } } } ksort($plugin_list); return $plugin_list; } /** * Returns locale string for $name or $name if no locale is found * * @param string $name for local string * * @return string locale string for $name */ function PMA_getString($name) { return isset($GLOBALS[$name]) ? $GLOBALS[$name] : $name; } /** * Returns html input tag option 'checked' if plugin $opt * should be set by config or request * * @param string $section name of config section in * $GLOBALS['cfg'][$section] for plugin * @param string $opt name of option * * @return string html input tag option 'checked' */ function PMA_pluginCheckboxCheck($section, $opt) { // If the form is being repopulated using $_GET data, that is priority if (isset($_GET[$opt]) || ! isset($_GET['repopulate']) && ((! empty($GLOBALS['timeout_passed']) && isset($_REQUEST[$opt])) || ! empty($GLOBALS['cfg'][$section][$opt])) ) { return ' checked="checked"'; } return ''; } /** * Returns default value for option $opt * * @param string $section name of config section in * $GLOBALS['cfg'][$section] for plugin * @param string $opt name of option * * @return string default value for option $opt */ function PMA_pluginGetDefault($section, $opt) { if (isset($_GET[$opt])) { // If the form is being repopulated using $_GET data, that is priority return htmlspecialchars($_GET[$opt]); } if (isset($GLOBALS['timeout_passed']) && $GLOBALS['timeout_passed'] && isset($_REQUEST[$opt]) ) { return htmlspecialchars($_REQUEST[$opt]); } if (!isset($GLOBALS['cfg'][$section][$opt])) { return ''; } $matches = array(); /* Possibly replace localised texts */ if (!preg_match_all( '/(str[A-Z][A-Za-z0-9]*)/', $GLOBALS['cfg'][$section][$opt], $matches )) { return htmlspecialchars($GLOBALS['cfg'][$section][$opt]); } $val = $GLOBALS['cfg'][$section][$opt]; foreach ($matches[0] as $match) { if (isset($GLOBALS[$match])) { $val = str_replace($match, $GLOBALS[$match], $val); } } return htmlspecialchars($val); } /** * Returns html select form element for plugin choice * and hidden fields denoting whether each plugin must be exported as a file * * @param string $section name of config section in * $GLOBALS['cfg'][$section] for plugin * @param string $name name of select element * @param array &$list array with plugin instances * @param string $cfgname name of config value, if none same as $name * * @return string html select tag */ function PMA_pluginGetChoice($section, $name, &$list, $cfgname = null) { if (! isset($cfgname)) { $cfgname = $name; } $ret = '' . "\n" . $hidden; return $ret; } /** * Returns single option in a list element * * @param string $section name of * config * section in * $GLOBALS['cfg'][$section] * for plugin * @param string $plugin_name unique plugin * name * @param array|\PMA\libraries\properties\PropertyItem &$propertyGroup options * property main * group * instance * @param boolean $is_subgroup if this group * is a subgroup * * @return string table row with option */ function PMA_pluginGetOneOption( $section, $plugin_name, &$propertyGroup, $is_subgroup = false ) { $ret = "\n"; if (! $is_subgroup) { // for subgroup headers if (mb_strpos(get_class($propertyGroup), "PropertyItem")) { $properties = array($propertyGroup); } else { // for main groups $ret .= '
'; } } if (method_exists($propertyGroup, "getDoc")) { $doc = $propertyGroup->getDoc(); if ($doc != null) { if (count($doc) == 3) { $ret .= PMA\libraries\Util::showMySQLDocu( $doc[1], false, $doc[2] ); } elseif (count($doc) == 1) { $ret .= PMA\libraries\Util::showDocu('faq', $doc[0]); } else { $ret .= PMA\libraries\Util::showMySQLDocu( $doc[1] ); } } } // Close the list element after $doc link is displayed if (isset($property_class)) { if ($property_class == 'PMA\libraries\properties\options\items\BoolPropertyItem' || $property_class == 'PMA\libraries\properties\options\items\MessageOnlyPropertyItem' || $property_class == 'PMA\libraries\properties\options\items\SelectPropertyItem' || $property_class == 'PMA\libraries\properties\options\items\TextPropertyItem' ) { $ret .= ''; } } $ret .= "\n"; return $ret; } /** * Get HTML for properties items * * @param string $section name of config section in * $GLOBALS['cfg'][$section] for plugin * @param string $plugin_name unique plugin name * @param OptionsPropertyItem $propertyItem Property item * * @return string */ function PMA_getHtmlForProperty( $section, $plugin_name, $propertyItem ) { $ret = null; $property_class = get_class($propertyItem); switch ($property_class) { case 'PMA\libraries\properties\options\items\BoolPropertyItem': $ret .= '' . PMA_getString($propertyItem->getText()) . '
'; break; case 'PMA\libraries\properties\options\items\RadioPropertyItem': $default = PMA_pluginGetDefault( $section, $plugin_name . '_' . $propertyItem->getName() ); foreach ($propertyItem->getValues() as $key => $val) { $ret .= '