File Editor
Directories:
.. (Back)
Admin
Aggregator
Ajax
Collections
Customizer
Dates
Editor
Event_Status
Event_Tickets
Featured_Events
Google
Importer
Integrations
JSON_LD
Linked_Posts
Meta
Models
REST
Repositories
Revisions
Service_Providers
Shortcode
Taxonomy
Template
Utils
Validator
Views
Files:
API.php
Adjacent_Events.php
Admin_List.php
Aggregator.php
Amalgamator.php
Assets.php
Capabilities.php
Constants.php
Cost_Utils.php
Deactivation.php
Default_Values.php
Editor.php
Embedded_Maps.php
Event_Cleaner.php
Event_Cleaner_Scheduler.php
Featured_Events.php
Front_Page_View.php
Gutenberg.php
I18n.php
Ignored_Events.php
Linked_Posts.php
Main.php
Options_Exception.php
Organizer.php
Plugin_Register.php
Post_Exception.php
Privacy.php
Query.php
Rewrite.php
Template_Factory.php
Templates.php
Timezones.php
Updater.php
Venue.php
iCal.php
Create New File
Create
Edit File: Default_Values.php
<?php class Tribe__Events__Default_Values { public function __call( $method, $args ) { if ( method_exists( $this, strtolower( $method ) ) ) { return call_user_func_array( [ $this, strtolower( $method ) ], $args ); } return ''; } public function venue() { return $this->venue_id(); } public function venue_id() { return null; } public function organizer() { return $this->organizer_id(); } public function organizer_id() { return 0; } public function address() { return ''; } public function city() { return ''; } public function state() { return ''; } public function province() { return ''; } public function zip() { return ''; } public function country() { return [ '', '' ]; } public function phone() { return ''; } }
Save Changes
Rename File
Rename