Joomla CMS  4.2.2
Documentation des API du CMS Joomla en version 4.2.2
Référence de la classe Normalise

Fonctions membres publiques statiques

static fromCamelCase ($input, $grouped=false)
 
static toCamelCase ($input)
 
static toDashSeparated ($input)
 
static toSpaceSeparated ($input)
 
static toUnderscoreSeparated ($input)
 
static toVariable ($input)
 
static toKey ($input)
 

Description détaillée

Joomla Framework String Normalise Class

Depuis
1.0

Documentation des fonctions membres

◆ fromCamelCase()

static fromCamelCase (   $input,
  $grouped = false 
)
static

Method to convert a string from camel case.

This method offers two modes. Grouped allows for splitting on groups of uppercase characters as follows:

"FooBarABCDef" becomes array("Foo", "Bar", "ABC", "Def") "JFooBar" becomes array("J", "Foo", "Bar") "J001FooBar002" becomes array("J001", "Foo", "Bar002") "abcDef" becomes array("abc", "Def") "abc_defGhi_Jkl" becomes array("abc_def", "Ghi_Jkl") "ThisIsA_NASAAstronaut" becomes array("This", "Is", "A_NASA", "Astronaut")) "JohnFitzgerald_Kennedy" becomes array("John", "Fitzgerald_Kennedy"))

Non-grouped will split strings at each uppercase character.

Paramètres
string$inputThe string input (ASCII only).
boolean$groupedOptionally allows splitting on groups of uppercase characters.
Renvoie
array|string The space separated string, as an array if grouped.
Depuis
1.0

Références $grouped, et $input.

Référencé par FormField\__construct(), et AbstractEvent\create().

◆ toCamelCase()

static toCamelCase (   $input)
static

Method to convert a string into camel case.

Paramètres
string$inputThe string input (ASCII only).
Renvoie
string The camel case string.
Depuis
1.0

Références $input.

◆ toDashSeparated()

static toDashSeparated (   $input)
static

Method to convert a string into dash separated form.

Paramètres
string$inputThe string input (ASCII only).
Renvoie
string The dash separated string.
Depuis
1.0

Références $input.

◆ toKey()

static toKey (   $input)
static

Method to convert a string into key form.

Paramètres
string$inputThe string input (ASCII only).
Renvoie
string The key string.
Depuis
1.0

Références $input.

◆ toSpaceSeparated()

static toSpaceSeparated (   $input)
static

Method to convert a string into space separated form.

Paramètres
string$inputThe string input (ASCII only).
Renvoie
string The space separated string.
Depuis
1.0

Références $input.

Référencé par FormHelper\loadClass().

◆ toUnderscoreSeparated()

static toUnderscoreSeparated (   $input)
static

Method to convert a string into underscore separated form.

Paramètres
string$inputThe string input (ASCII only).
Renvoie
string The underscore separated string.
Depuis
1.0

Références $input.

◆ toVariable()

static toVariable (   $input)
static

Method to convert a string into variable form.

Paramètres
string$inputThe string input (ASCII only).
Renvoie
string The variable string.
Depuis
1.0

Références $input.


La documentation de cette classe a été générée à partir du fichier suivant :