Sid Gifari File Manager
🏠 Root
/
home
/
nradmin
/
public_html
/
wp-content
/
themes
/
flatsome
/
inc
/
builder
/
core
/
server
/
src
/
Collections
/
📝 Editing: Collection.php
<?php namespace UxBuilder\Collections; class Collection { protected $items; public function __construct() { $this->items = array(); } public function set( $key, $value ) { $this->items[$key] = $value; } public function get( $key ) { return $this->items[$key] ?: null; } public function all() { return $this->items; } public function remove( $key ) { unset( $this->items[$key] ); } public function clear() { $this->items = array(); } public function to_array() { return $this->all(); } }
💾 Save
❌ Cancel
Sid Gifari File Manager v1.0 | Terminal Auto-Sync Enabled | Current Path: /home/nradmin/public_html/wp-content/themes/flatsome/inc/builder/core/server/src/Collections