本文整理汇总了PHP中modules::get_list_module_methods方法的典型用法代码示例。如果您正苦于以下问题:PHP modules::get_list_module_methods方法的具体用法?PHP modules::get_list_module_methods怎么用?PHP modules::get_list_module_methods使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类modules
的用法示例。
在下文中一共展示了modules::get_list_module_methods方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: modules
function validate_per_module_for_group($id_group)
{
$this->inicializar_base_datos();
$per = false;
$this->per = 0;
$num = 0;
// $result = $this->validate_per_group_module ($id_group, $this->id_module);
$result = $_SESSION['permisos_group_modules'][$id_group][$this->id_module];
if ($result == true) {
$per = true;
$this->per = 1;
}
$modules = new modules();
$this->num_methods = $modules->get_list_module_methods($this->id_module);
for ($metodo_num = 0; $metodo_num < $this->num_methods; $metodo_num++) {
//Como se tiene el numero de metodos de este modulo, entonces se puede ver nombre e identificador en $this->per_methods[$metodo_num]->name
//As� ser� mas f�cil recorrer la matriz, y no hay problemas de pasar un hash a smarty ya que no los acepta
$this->per_methods[$metodo_num] = new permissions_methods();
$this->per_methods[$metodo_num]->id_method = $modules->module_methods[$metodo_num]['id_method'];
$this->per_methods[$metodo_num]->method_name = $modules->module_methods[$metodo_num]['name'];
$this->per_methods[$metodo_num]->method_name_web = $modules->module_methods[$metodo_num]['name_web'];
if ($per == true) {
$this->per_methods[$metodo_num]->validate_per_method_for_group($id_group, $this->per_methods[$metodo_num]->id_method);
} else {
$this->per_methods[$metodo_num]->per = 0;
//print "NO MOdulo: metodo ".$this->method_name." permisos ".$this->per."............";
}
}
}