Changeset 186
- Timestamp:
- 06/20/08 12:46:38 (4 months ago)
- Location:
- ez_publish/myutils/trunk/autoloads
- Files:
-
- 2 modified
-
eztemplateautoload.php (modified) (1 diff)
-
myutils_operators.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ez_publish/myutils/trunk/autoloads/eztemplateautoload.php
r184 r186 35 35 'gmdate', 36 36 'is_debug_enabled', 37 'json_decode', 37 38 'path_to_path_array', 38 39 'redirect', -
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'] );
