本文整理匯總了PHP中group::this_to_array方法的典型用法代碼示例。如果您正苦於以下問題:PHP group::this_to_array方法的具體用法?PHP group::this_to_array怎麽用?PHP group::this_to_array使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類group
的用法示例。
在下文中一共展示了group::this_to_array方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: group
/**
Sets the permissions for a group.
*/
function set_permissions()
{
global $__in, $__out;
try {
$group = new group($__in['id']);
$__out['group'] = $group->this_to_array();
$permission = new permission();
$__out['arr_permissions'] = $permission->assoc_array_from_result_array($permission->getall(), "id", "description");
$__out['selected_permission_ids'] = $group->get_selected_permission_ids();
if ($__in['__is_form_submitted']) {
// if form is submitted
$group->set_permissions($__in['group']['permissions']);
return dispatcher::redirect(array("action" => "getall"), "updated_successfully");
}
} catch (ValidationException $ex) {
$ex->publish_errors();
} catch (Exception $ex) {
throw $ex;
}
return true;
}