golden hour
/var/www/html/wp-content/plugins/the-events-calendar/common/src/Tribe
⬆️ Go Up
Upload
File/Folder
Size
Actions
Abstract_Deactivation.php
1.65 KB
Del
OK
Abstract_Plugin_Register.php
1.25 KB
Del
OK
Admin
-
Del
OK
Ajax
-
Del
OK
App_Shop.php
9.87 KB
Del
OK
Asset
-
Del
OK
Assets.php
24.69 KB
Del
OK
Assets_Pipeline.php
1.7 KB
Del
OK
Autoloader.php
8.31 KB
Del
OK
Cache.php
18.13 KB
Del
OK
Cache_Listener.php
5.92 KB
Del
OK
Changelog_Reader.php
1.5 KB
Del
OK
Container.php
11.36 KB
Del
OK
Context
-
Del
OK
Context.php
48.65 KB
Del
OK
Cost_Utils.php
16.44 KB
Del
OK
Credits.php
2.9 KB
Del
OK
Customizer
-
Del
OK
Customizer.php
25.29 KB
Del
OK
DB_Lock.php
10.04 KB
Del
OK
Data.php
5.21 KB
Del
OK
Date_Utils.php
48.59 KB
Del
OK
Db.php
876 B
Del
OK
Debug.php
1.54 KB
Del
OK
Debug_Bar
-
Del
OK
Dependency.php
16.47 KB
Del
OK
Deprecation.php
4.84 KB
Del
OK
Dialog
-
Del
OK
Documentation
-
Del
OK
Duplicate
-
Del
OK
Editor
-
Del
OK
Editor.php
6.58 KB
Del
OK
Error.php
4.51 KB
Del
OK
Exception.php
2.08 KB
Del
OK
Extension.php
13 KB
Del
OK
Extension_Loader.php
3.96 KB
Del
OK
Feature_Detection.php
7.51 KB
Del
OK
Field.php
22.38 KB
Del
OK
Field_Conditional.php
2.37 KB
Del
OK
Freemius.php
1.34 KB
Del
OK
Image
-
Del
OK
JSON_LD
-
Del
OK
Languages
-
Del
OK
Log
-
Del
OK
Log.php
11.33 KB
Del
OK
Main.php
23.13 KB
Del
OK
Meta
-
Del
OK
Models
-
Del
OK
Notices.php
1.49 KB
Del
OK
PUE
-
Del
OK
Plugin_Meta_Links.php
3.45 KB
Del
OK
Plugins.php
5.32 KB
Del
OK
Plugins_API.php
12.2 KB
Del
OK
Post_History.php
2.96 KB
Del
OK
Post_Transient.php
5.76 KB
Del
OK
Process
-
Del
OK
Promise.php
9.04 KB
Del
OK
Promoter
-
Del
OK
REST
-
Del
OK
Repository
-
Del
OK
Repository.php
100.06 KB
Del
OK
Rewrite.php
34.63 KB
Del
OK
Service_Providers
-
Del
OK
Settings.php
23.81 KB
Del
OK
Settings_Manager.php
9.78 KB
Del
OK
Settings_Tab.php
6.93 KB
Del
OK
Shortcode
-
Del
OK
Simple_Table.php
4.01 KB
Del
OK
Support
-
Del
OK
Support.php
14.43 KB
Del
OK
Tabbed_View
-
Del
OK
Tabbed_View.php
8.1 KB
Del
OK
Template.php
43.65 KB
Del
OK
Template_Factory.php
5.45 KB
Del
OK
Template_Part_Cache.php
2.74 KB
Del
OK
Templates.php
1.79 KB
Del
OK
Terms.php
1.51 KB
Del
OK
Timezones.php
18.21 KB
Del
OK
Tooltip
-
Del
OK
Tracker.php
12.51 KB
Del
OK
Traits
-
Del
OK
Updater.php
3.78 KB
Del
OK
Utils
-
Del
OK
Validate.php
16.54 KB
Del
OK
Validator
-
Del
OK
View_Helpers.php
9.64 KB
Del
OK
Widget
-
Del
OK
Edit: Data.php
<?php /** * Class Tribe__Data * * A value object implementing the ArrayAccess interface. * * Example usage: * $my_data = array( 'lorem' => 'dolor' ); * * // by default return 'nope' when a value is not set in the data * $data = new Tribe__Data( $my_data, 'nope' ); * * // set some values in the data * $data['foo'] = 'bar'; * $data['bar'] = 23; * * // fetch some values * $var_1 = $data['foo']; // "bar" * $var_2 = $data['bar']; // 23 * $var_3 = $data['lorem']; // "dolor" * $var_4 = $data['woo']; // "nope" * * $data->set_default( 'not found' ); * * $var_4 = $data['woo']; // "not found" * */ class Tribe__Data implements ArrayAccess, Iterator { /** * @var int */ protected $index = 0; /** * @var array The data managed by this object. */ protected $data; /** * @var mixed The default value that will be returned when trying to get the value * of a non set key. */ protected $default; /** * Tribe__Data constructor. * * @param array|object $data An array or object of data. * @param mixed $default The default value that should be returned if a key is not set */ public function __construct( $data = [], $default = false ) { $this->data = (array) $data; $this->default = $default; } /** * Whether a offset exists * * @link http://php.net/manual/en/arrayaccess.offsetexists.php * @param mixed $offset <p> * An offset to check for. * </p> * @return boolean true on success or false on failure. * </p> * <p> * The return value will be casted to boolean if non-boolean was returned. * @since 4.11.0 */ public function offsetExists( $offset ) { return isset( $this->data[ $offset ] ); } /** * Offset to retrieve * * @link http://php.net/manual/en/arrayaccess.offsetget.php * @param mixed $offset <p> * The offset to retrieve. * </p> * @return mixed Can return all value types. * @since 4.11.0 */ public function offsetGet( $offset ) { return isset( $this->data[ $offset ] ) ? $this->data[ $offset ] : $this->default; } /** * Offset to set * * @link http://php.net/manual/en/arrayaccess.offsetset.php * @param mixed $offset <p> * The offset to assign the value to. * </p> * @param mixed $value <p> * The value to set. * </p> * @return void * @since 4.11.0 */ public function offsetSet( $offset, $value ) { $this->data[ $offset ] = $value; } /** * Offset to unset * * @link http://php.net/manual/en/arrayaccess.offsetunset.php * @param mixed $offset <p> * The offset to unset. * </p> * @return void * @since 4.11.0 */ public function offsetUnset( $offset ) { unset( $this->data[ $offset ] ); } /** * Gets the data this object manages. * * @return array */ public function get_data() { return $this->data; } /** * Sets the data this object will manage. * * @param array $data */ public function set_data( array $data ) { $this->data = $data; } /** * Gets the default value that will be returned when a key is not set. * * @return mixed */ public function get_default() { return $this->default; } /** * Sets the default value that should be returned when a key is not set. * * @param mixed $default */ public function set_default( $default ) { $this->default = $default; } /** * Return the current element * * @link http://php.net/manual/en/iterator.current.php * @return mixed Can return any type. * @since 4.11.0 */ public function current() { $keys = array_keys( $this->data ); return $this->data[ $keys[ $this->index ] ]; } /** * Move forward to next element * * @link http://php.net/manual/en/iterator.next.php * @return void Any returned value is ignored. * @since 4.11.0 */ public function next() { $keys = array_keys( $this->data ); if ( isset( $keys[ ++ $this->index ] ) ) { return $this->data[ $keys[ $this->index ] ]; } return false; } /** * Return the key of the current element * * @link http://php.net/manual/en/iterator.key.php * @return mixed scalar on success, or null on failure. * @since 4.11.0 */ public function key() { $keys = array_keys( $this->data ); return $keys[ $this->index ]; } /** * Checks if current position is valid * * @link http://php.net/manual/en/iterator.valid.php * @return boolean The return value will be casted to boolean and then evaluated. * Returns true on success or false on failure. * @since 4.11.0 */ public function valid() { $keys = array_keys( $this->data ); return isset( $keys[ $this->index ] ); } /** * Rewind the Iterator to the first element * * @link http://php.net/manual/en/iterator.rewind.php * @return void Any returned value is ignored. * @since 4.11.0 */ public function rewind() { $this->index = 0; } /** * Converts the data object in an array. * * @return array * * @since 4.6 */ public function to_array() { return $this->get_data(); } }
Save