0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
core
/
WikiParser
/
[
Home
]
File: PluginDefinition.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: PluginDefinition.php 33195 2011-03-02 17:43:40Z changi67 $ class WikiParser_PluginDefinition implements ArrayAccess, Countable { private $repository; private $data; function __construct( $repository, $data ) { $this->repository = $repository; $this->data = $data; } function offsetExists( $offset ) { return isset( $this->data[$offset] ); } function offsetGet( $offset ) { return $this->data[$offset]; } function offsetSet( $offset, $value ) { // Immutable return $this->offsetGet( $offset ); } function offsetUnset( $offset ) { // Immutable } function count() { return count( $this->data ); } }