- [x] [ModuleRequest->getFunctionCaller] Correction semantique du chemin d'amorcage, utilisation de tableau
This commit is contained in:
parent
7a21d7b32f
commit
2d68012cf4
|
@ -242,7 +242,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
private function getFunctionCaller(){
|
private function getFunctionCaller(){
|
||||||
return '\\manager\\module\\'.$this->path['module'].'::'.$this->path['method'];
|
return array( '\\manager\\module\\'.$this->path['module'], $this->path['method'] );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,10 @@
|
||||||
|
|
||||||
echo '<section>';
|
echo '<section>';
|
||||||
echo 'Liste des utilisateurs: <br>';
|
echo 'Liste des utilisateurs: <br>';
|
||||||
var_dump( $users );
|
if( $request->error != \manager\ManagerError::Success )
|
||||||
|
var_dump( \manager\ManagerError::explicit($request->error) );
|
||||||
|
else
|
||||||
|
var_dump( $users );
|
||||||
echo '</section>';
|
echo '</section>';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue