class SpecialSchemaLinks (View source)

Methods

static array
get()

This array represent the details for generating links inside special schemas like mysql, information_schema etc.

Details

static array get()

This array represent the details for generating links inside special schemas like mysql, information_schema etc.

Major element represent a schema. All the strings in this array represented in lower case

Array structure ex: array( // Database name is the major element 'mysql' => array( // Table name 'db' => array( // Column name 'user' => array( // Main url param (can be an array where represent sql) 'link_param' => 'username', // Other url params 'link_dependancy_params' => array( 0 => array( // URL parameter name // (can be array where url param has static value) 'param_info' => 'hostname', // Column name related to url param 'column_name' => 'host' ) ), // Page to link 'default_page' => './' . Url::getFromRoute('/server/privileges') ) ) ) );

Return Value

array