forked from ZwiiCMS-Team/ZwiiCMS
Compatibilité arrayColumn et arrayCollumn
This commit is contained in:
parent
a263ebc2a4
commit
c10149eb42
@ -104,6 +104,14 @@ class helper {
|
||||
return $newArray;
|
||||
}
|
||||
|
||||
/**
|
||||
* Compatibilité avec les anciens modules
|
||||
*/
|
||||
public static function arrayCollumn($array, $column, $sort = null) {
|
||||
return (helper::arrayColumn($array, $column, $sort));
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Génère un backup des données de site
|
||||
|
@ -346,7 +346,7 @@ class common {
|
||||
|
||||
// Construit la liste des pages parents/enfants
|
||||
if($this->hierarchy['all'] === []) {
|
||||
$pages = helper::arrayColumn($this->getData(['page']), 'position', 'SORT_ASC');
|
||||
$pages = helper::arrayCollumn($this->getData(['page']), 'position', 'SORT_ASC');
|
||||
// Parents
|
||||
foreach($pages as $pageId => $pagePosition) {
|
||||
if(
|
||||
|
Loading…
Reference in New Issue
Block a user