Changeset 186 for ez_publish/myutils/trunk/autoloads/myutils_operators.php
- Timestamp:
- 06/20/08 12:46:38 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
ez_publish/myutils/trunk/autoloads/myutils_operators.php
r185 r186 43 43 'gmdate', 44 44 'is_debug_enabled', 45 'json_decode', 45 46 'path_to_path_array', 46 47 'redirect', … … 73 74 'is_debug_enabled' => array( ), 74 75 76 'json_decode' => array( 77 'json' => array( 'type' => 'string', 'required' => true, 'default' => '' ), 78 'assoc' => array( 'type' => 'bool', 'required' => false, 'default' => true ) 79 ), 80 75 81 'path_to_path_array' => array( 76 82 'path' => array( 'type' => 'array', 'required' => true, 'default' => '' ), … … 115 121 break; 116 122 123 case 'json_decode': 124 $operatorValue = json_decode( $namedParameters['json'], $namedParameters['assoc'] ); 125 break; 126 117 127 case 'path_to_path_array': 118 128 $operatorValue = myUtilsFunctions::path2PathArray( $namedParameters['path'] );
