| Server IP : 78.24.162.143 / Your IP : 216.73.216.44 Web Server : Apache System : Linux hosting.cormo.systems 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64 User : web63 ( 5058) PHP Version : 7.4.33 Disable Function : create_functions,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client34/web63/web/wp-content/plugins/pods/tribe-common/src/Tribe/Editor/ |
Upload File : |
<?php
/**
* Class Tribe__Editor__Meta
*
* @since 4.8
*/
abstract class Tribe__Editor__Meta
implements Tribe__Editor__Meta_Interface {
/**
* Default definition for an attribute of type text
*
* @since 4.8
*
* @return array
*/
protected function text() {
return [
'auth_callback' => [ $this, 'auth_callback' ],
'sanitize_callback' => 'sanitize_text_field',
'type' => 'string',
'single' => true,
'show_in_rest' => true,
];
}
/**
* Add arguments to escape a text area field
*
* @since 4.8
*
* @return array
*/
protected function textarea() {
return [
'auth_callback' => [ $this, 'auth_callback' ],
'sanitize_callback' => 'sanitize_textarea_field',
'type' => 'string',
'single' => true,
'show_in_rest' => true,
];
}
/**
* Add arguments to escape a field of URL type
*
* @since 4.8
*
* @return array
*/
protected function url() {
return [
'auth_callback' => [ $this, 'auth_callback' ],
'sanitize_callback' => 'esc_url_raw',
'type' => 'string',
'single' => true,
'show_in_rest' => true,
];
}
/**
* Default definition for an attribute of type text
*
* @since 4.8
*
* @return array
*/
protected function numeric() {
return [
'auth_callback' => [ $this, 'auth_callback' ],
'sanitize_callback' => 'absint',
'type' => 'number',
'single' => true,
'show_in_rest' => true,
];
}
/***
* Default definition for an attribute of type boolean
*
* @since 4.8
*
* @return array
*/
protected function boolean() {
return [
'auth_callback' => [ $this, 'auth_callback' ],
'sanitize_callback' => [ $this, 'sanitize_boolean' ],
'type' => 'boolean',
'single' => true,
'show_in_rest' => true,
];
}
/**
* Register a numeric type of array
*
* @since 4.8
*
* @return array
*/
protected function numeric_array() {
return [
'description' => __( 'Numeric Array', 'tribe-common' ),
'auth_callback' => [ $this, 'auth_callback' ],
'sanitize_callback' => [ $this, 'sanitize_numeric_array' ],
'type' => 'number',
'single' => false,
'show_in_rest' => true,
];
}
/**
* Register a text type of array
*
* @since 4.8
*
* @return array
*/
protected function text_array() {
return [
'description' => __( 'Text Array', 'tribe-common' ),
'auth_callback' => [ $this, 'auth_callback' ],
'sanitize_callback' => [ $this, 'sanitize_text_array' ],
'type' => 'string',
'single' => false,
'show_in_rest' => true,
];
}
/**
* Sanitize an array of text
*
* @since 4.8
*
* @param $value
*
* @return array
*/
public function sanitize_text_array( $value ) {
if ( is_array( $value ) ) {
return array_map( 'sanitize_text_field', $value );
} else {
return sanitize_text_field( $value );
}
}
/**
* Checks and sanitize a given value to a numeric array or a numeric string
*
* @since 4.8
*
* @param mixed $value Check agains this value
*
* @return array|bool|int
*/
public function sanitize_numeric_array( $value ) {
if ( is_array( $value ) ) {
return wp_parse_id_list( $value );
} elseif ( is_numeric( $value ) ) {
return absint( $value );
} else {
return false;
}
}
/**
* Make sure sanitization on boolean does not triggered warnings when multiple values are passed
* to the function
*
* @since 4.8
*
* @param $value
*
* @return bool
*/
public function sanitize_boolean( $value ) {
return filter_var( $value, FILTER_VALIDATE_BOOLEAN );
}
/**
* Sanitize strings allowing the usage of white spaces before or after the separators, as
* - sanitize_text_field removes any whitespace
*
* @since 4.8
*
* @param $value
*
* @return mixed
*/
public function sanitize_separator( $value ) {
return filter_var( $value, FILTER_SANITIZE_STRING );
}
/**
* Verify if the current user can edit or not this Post
*
* @since 4.8
*
* @param bool $allowed Whether the user can add the post meta. Default false.
* @param string $meta_key The meta key.
* @param int $post_id Post ID.
* @param int $user_id User ID.
* @param string $cap Capability name.
* @param array $caps User capabilities.
*
* @return boolean
*/
public function auth_callback( $allowed, $meta_key, $post_id, $user_id, $cap, $caps ) {
$post = get_post( $post_id );
$post_type_obj = get_post_type_object( $post->post_type );
$current_user_can = current_user_can( $post_type_obj->cap->edit_post, $post_id );
return $current_user_can;
}
}