]>
src.bluestatic.org Git - bugdar.git/blob - includes/api_automation.php
2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright (c)2004-2008 Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 require_once ISSO
. '/Api.php' ;
23 require_once ( './includes/functions_datastore.php' );
29 * @copyright Copyright (c)2004 - 2008, Blue Static
33 class AutomationAPI
extends BSApi
39 protected $fields = array (
40 'actionid' => array ( TYPE_UINT
, REQ_AUTO
),
41 'name' => array ( TYPE_STR
, REQ_YES
),
42 'description' => array ( TYPE_STR
, REQ_NO
),
43 'fieldchanges' => array ( TYPE_NONE
, REQ_YES
),
44 'comment' => array ( TYPE_STR
, REQ_NO
)
51 protected $table = 'automation' ;
57 protected $prefix = TABLE_PREFIX
;
62 protected function post_insert ()
70 protected function post_update ()
78 protected function post_delete ()
86 protected function validate_actionid ( $field )
88 return $this- > _verifyIsNotZero ( $field );
94 protected function validate_name ( $field )
96 return $this- > _verifyIsNotEmpty ( $field );
100 * Validate: fieldchanges
102 protected function validate_fieldchanges ()
104 if (! is_array ( $this- > values
[ 'fieldchanges' ]) || sizeof ( $this- > values
[ 'fieldchanges' ]) != 2 || ! is_array ( $this- > values
[ 'fieldchanges' ][ 'custom' ]) || ! is_array ( $this- > values
[ 'fieldchanges' ][ 'builtin' ]))
106 return T ( 'Invalid array type passed. The fieldchaneges array must be a two-dimensional array: array("builtin" => array("fieldname" => "newvalue" ...), "custom" => array("fieldname" => "fieldvalue" ...))' );
109 if ( sizeof ( $this- > values
[ 'fieldchanges' ][ 'custom' ]) < 1 && sizeof ( $this- > values
[ 'fieldchanges' ][ 'builtin' ]) < 1 )
111 return T ( 'You need to specify some fields to change.' );
114 $this- > values
[ 'fieldchanges' ] = serialize ( $this- > values
[ 'fieldchanges' ]);