XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
GroupPermEditForm.class.php
1<?php
2
3if (!defined('XOOPS_ROOT_PATH')) {
4 exit();
5}
6
7require_once XOOPS_ROOT_PATH . '/core/XCube_ActionForm.class.php';
8
10{
11 public function getTokenName()
12 {
13 return 'module.user.GroupPermEditForm.TOKEN';
14 }
15
16 public function prepare()
17 {
18 //
19 // Set form properties
20 //
21 $this->mFormProperties['system'] =new XCube_BoolArrayProperty('system');
22 $this->mFormProperties['module'] =new XCube_BoolArrayProperty('module');
23 $this->mFormProperties['module_admin'] =new XCube_BoolArrayProperty('module_admin');
24 $this->mFormProperties['block'] =new XCube_BoolArrayProperty('block');
25
26 //
27 // Set field properties
28 //
29 }
30}
getTokenName()
Gets the token name of this actionform's token.
prepare()
[Abstract] Set up form properties and field properties.
Represents bool[] property. XCube_GenericArrayProperty<XCube_BoolProperty>.