PMA\libraries\Charsets::getMySQLCollations PHP Метод

getMySQLCollations() публичный статический Метод

public static getMySQLCollations ( )
    public static function getMySQLCollations()
    {
        self::loadCollations();
        return self::$_collations;
    }

Usage Example

 /**
  * Index action
  *
  * @return void
  */
 public function indexAction()
 {
     /**
      * Does the common work
      */
     include_once 'libraries/server_common.inc.php';
     $this->response->addHTML(PMA_getHtmlForSubPageHeader('collations'));
     $this->response->addHTML($this->_getHtmlForCharsets(Charsets::getMySQLCharsets(), Charsets::getMySQLCollations(), Charsets::getMySQLCharsetsDescriptions(), Charsets::getMySQLCollationsDefault()));
 }
All Usage Examples Of PMA\libraries\Charsets::getMySQLCollations