You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
322 B
20 lines
322 B
<?php |
|
|
|
require_once('DojoParameters.php'); |
|
require_once('DojoBlock.php'); |
|
|
|
class DojoArray extends DojoParameters |
|
{ |
|
private $object = 'DojoArray'; |
|
protected $terminator = ']'; |
|
|
|
public function getItems(){ |
|
return $this->getParameters(); |
|
} |
|
|
|
public function getItem($pos){ |
|
return $this->getParameter($pos); |
|
} |
|
} |
|
|
|
?>
|