XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
Mailjob_linkAdminDeletesForm.class.php
1<?php
7
8if (!defined('XOOPS_ROOT_PATH')) {
9 exit();
10}
11
12require_once XOOPS_ROOT_PATH . '/core/XCube_ActionForm.class.php';
13
15{
16 public function getTokenName()
17 {
18 return 'module.user.Mailjob_linkAdminDeletesForm.TOKEN.' . $this->get('mailjob_id');
19 }
20
25 public function getTokenErrorMessage()
26 {
27 return null;
28 }
29
30 public function prepare()
31 {
32 // set properties
33 $this->mFormProperties['mailjob_id']=new XCube_IntProperty('mailjob_id');
34 $this->mFormProperties['uid']=new XCube_IntArrayProperty('uid');
35 }
36}
Represents int[] property. XCube_GenericArrayProperty<XCube_IntProperty>.
Represents int property.