Parameters must be strings or arrays with two elements, a
class and method name.
addHelperPath( path : mixed ) : void
Adds paths to search for template files. path can be a string or an array of strings.
Parameters path A path or array of paths
addTemplatePath( path : mixed ) : void
Adds paths to search for template files. path can be a string or an array of strings.
Parameters path A path or array of paths
Appendix
[ 376 ]
assign( arg0 : mixed, arg1 : mixed=null ) : boolean
Dynamically adds properties to the object. If arg0 is an object/array, each of the
properties/keys will be added to the object. If arg0 is a string, it will be used as the name
of the property, and arg1 will be assigned to the value. Properties will be ignored if they
start with an underscore.
Parameters arg0 Object/Array to add or a property name
[arg1] Value if arg0 is a string
Returns true on success
assignRef( key : string, &val : mixed ) : boolean
Dynamically adds the property, identified by key, to the object with a reference to val.
Pages:
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525