PATH:
var
/
www
/
vhosts
/
sandbox.dos-group.com
/
httpdocs
/
mendrisio
/
wp-content
/
plugins
/
events-manager
/
classes
<?php class EM_Category extends EM_Taxonomy_Term { //static options for EM_Category, but until PHP 5.3 is the WP minimum requirement we'll make them regular properties due to lack of late static binding public $option_ms_global = true; public $option_name = 'category'; //the singular name of this taxonomy which is used in option names consistent across EM taxonomies public $taxonomy = 'EM_TAXONOMY_CATEGORY'; /** * Necessary to supply the $class_name until late static binding is reliably available on all WP sites running PHP 5.3 * @param string $id * @param string $class_name * @return EM_Taxonomy */ public static function get( $id, $class_name = 'EM_Category' ){ return parent::get($id, $class_name); } public function can_manage( $capability_owner = 'edit_event_categories', $capability_admin = false, $user_to_check = false ){ return parent::can_manage($capability_owner, $capability_admin, $user_to_check); } } /** * Get an category in a db friendly way, by checking globals and passed variables to avoid extra class instantiations * @param mixed $id * @return EM_Category * @uses EM_Category::get() */ function em_get_category( $id ) { return EM_Category::get($id); }
[-] em-taxonomy-frontend.php
[open]
[-] em-mailer.php
[open]
[-] em-object.php
[open]
[-] em-taxonomy-terms.php
[open]
[-] em-tag.php
[open]
[-] em-tags-admin.php
[open]
[-] em-admin-notice.php
[open]
[-] em-bookings.php
[open]
[-] em-event.php
[open]
[-] em-categories.php
[open]
[+]
em-oauth
[-] em-taxonomy-term.php
[open]
[+]
..
[-] em-people.php
[open]
[-] em-location-post-admin.php
[open]
[-] em-booking.php
[open]
[-] em-person.php
[open]
[-] em-taxonomy-admin.php
[open]
[-] em-category.php
[open]
[-] em-tags-frontend.php
[open]
[-] em-events.php
[open]
[-] em-ticket.php
[open]
[-] em-tickets.php
[open]
[-] em-datetime.php
[open]
[-] em-categories-admin.php
[open]
[-] em-location-posts-admin.php
[open]
[-] em-exception.php
[open]
[-] em-ticket-booking.php
[open]
[-] em-bookings-table.php
[open]
[-] em-categories-frontend.php
[open]
[-] em-event-post-admin.php
[open]
[-] em-location.php
[open]
[-] em-locations.php
[open]
[-] em-location-post.php
[open]
[-] em-options.php
[open]
[-] em-tickets-bookings.php
[open]
[-] em-event-posts-admin.php
[open]
[-] em-tags.php
[open]
[-] em-permalinks.php
[open]
[-] em-calendar.php
[open]
[-] em-event-post.php
[open]
[-] em-admin-notices.php
[open]
[+]
event-locations
[-] em-notices.php
[open]