PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
nextgen-gallery
/
src
/
DataTypes
<?php namespace Imagely\NGG\DataTypes; use Imagely\NGG\DataMappers\Gallery as GalleryMapper; class LegacyImageCollection implements \ArrayAccess { public $container = []; public $galleries = []; /** * @param $offset * @return bool */ #[\ReturnTypeWillChange] public function offsetExists( $offset ) { return isset( $this->container[ $offset ] ); } /** * @param $offset * @return mixed|null */ #[\ReturnTypeWillChange] public function offsetGet( $offset ) { return isset( $this->container[ $offset ] ) ? $this->container[ $offset ] : null; } /** * @param $offset * @param $value */ #[\ReturnTypeWillChange] public function offsetSet( $offset, $value ) { if ( is_object( $value ) ) { $value->container = $this; } if ( is_null( $offset ) ) { $this->container[] = $value; } else { $this->container[ $offset ] = $value; } } /** * @param $offset * @return void */ #[\ReturnTypeWillChange] public function offsetUnset( $offset ) { unset( $this->container[ $offset ] ); } /** * Retrieves and caches a gallery mapper instance for this gallery id * * @param int $gallery_id Gallery ID * @return mixed */ public function get_gallery( $gallery_id ) { if ( ! isset( $this->galleries[ $gallery_id ] ) || is_null( $this->galleries[ $gallery_id ] ) ) { $this->galleries[ $gallery_id ] = GalleryMapper::get_instance(); } return $this->galleries[ $gallery_id ]; } }
[-] Image.php
[edit]
[-] Lightbox.php
[edit]
[-] LegacyImage.php
[edit]
[-] DataMapperExtraFields.php
[edit]
[-] LegacyThumbnail.php
[edit]
[-] Album.php
[edit]
[-] Gallery.php
[edit]
[-] DisplayedGallery.php
[edit]
[-] LegacyImageCollection.php
[edit]
[-] DisplayType.php
[edit]
[+]
..