quest.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function update_item( $request ) {
$term = $this->get_term( $request['id'] );
if ( is_wp_error( $term ) ) {
return $term;
}
if ( isset( $request['parent'] ) ) {
if ( ! is_taxonomy_hierarchical( $this->taxonomy ) ) {
return new WP_Error( 'rest_taxonomy_not_hierarchical', __( 'Cannot set parent term, taxonomy is not hierarchical.' ), array( 'status' => 400 ) );
}
$parent = get_term( (int) $request['parent'], $this->taxonomy );
if ( ! $parent ) {
return new WP_Error( 'rest_term_invalid', __( 'Parent term does not exist.' ), array( 'status' => 400 ) );
}
}
$prepared_term = $this->prepare_item_for_database( $request );
// Only update the term if we have something to update.
if ( ! empty( $prepared_term ) ) {
if ( ! isset( $prepared_term->{'menu-name'} ) ) {
// wp_update_nav_menu_object() requires that the menu-name is always passed.
$prepared_term->{'menu-name'} = $term->name;
}
$update = wp_update_nav_menu_object( $term->term_id, wp_slash( (array) $prepared_term ) );
if ( is_wp_error( $update ) ) {
return $update;
}
}
$term = get_term( $term->term_id, $this->taxonomy );
/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
do_action( "rest_insert_{$this->taxonomy}", $term, $request, false );
$schema = $this->get_item_schema();
if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
$meta_update = $this->meta->update_value( $request['meta'], $term->term_id );
if ( is_wp_error( $meta_update ) ) {
return $meta_update;
}
}
$locations_update = $this->handle_locations( $term->term_id, $request );
if ( is_wp_error( $locations_update ) ) {
return $locations_update;
}
$this->handle_auto_add( $term->term_id, $request );
$fields_update = $this->update_additional_fields_for_object( $term, $request );
if ( is_wp_error( $fields_update ) ) {
return $fields_update;
}
$request->set_param( 'context', 'view' );
/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, false );
$response = $this->prepare_item_for_response( $term, $request );
return rest_ensure_response( $response );
}
/**
* Deletes a single term from a taxonomy.
*
* @since 5.9.0
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.
*/
public function delete_item( $request ) {
$term = $this->get_term( $request['id'] );
if ( is_wp_error( $term ) ) {
return $term;
}
// We don't support trashing for terms.
if ( ! $request['force'] ) {
/* translators: %s: force=true */
return new WP_Error( 'rest_trash_not_supported', sprintf( __( "Menus do not support trashing. Set '%s' to delete." ), 'force=true' ), array( 'status' => 501 ) );
}
$request->set_param( 'context', 'view' );
$previous = $this->prepare_item_for_response( $term, $request );
$result = wp_delete_nav_menu( $term );
if ( ! $result || is_wp_error( $result ) ) {
return new WP_Error( 'rest_cannot_delete', __( 'The menu cannot be deleted.' ), array( 'status' => 500 ) );
}
$response = new WP_REST_Response();
$response->set_data(
array(
'deleted' => true,
'previous' => $previous->get_data(),
)
);
/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
do_action( "rest_delete_{$this->taxonomy}", $term, $response, $request );
return $response;
}
/**
* Returns the value of a menu's auto_add setting.
*
* @since 5.9.0
*
* @param int $menu_id The menu id to query.
* @return bool The value of auto_add.
*/
protected function get_menu_auto_add( $menu_id ) {
$nav_menu_option = (array) get_option( 'nav_menu_options', array( 'auto_add' => array() ) );
return in_array( $menu_id, $nav_menu_option['auto_add'], true );
}
/**
* Updates the menu's auto add from a REST request.
*
* @since 5.9.0
*
* @param int $menu_id The menu id to update.
* @param WP_REST_Request $request Full details about the request.
* @return bool True if the auto add setting was successfully updated.
*/
protected function handle_auto_add( $menu_id, $request ) {
if ( ! isset( $request['auto_add'] ) ) {
return true;
}
$nav_menu_option = (array) get_option( 'nav_menu_options', array( 'auto_add' => array() ) );
if ( ! isset( $nav_menu_option['auto_add'] ) ) {
$nav_menu_option['auto_add'] = array();
}
$auto_add = $request['auto_add'];
$i = array_search( $menu_id, $nav_menu_option['auto_add'], true );
if ( $auto_add && false === $i ) {
$nav_menu_option['auto_add'][] = $menu_id;
} elseif ( ! $auto_add && false !== $i ) {
array_splice( $nav_menu_option['auto_add'], $i, 1 );
}
$update = update_option( 'nav_menu_options', $nav_menu_option );
/** This action is documented in wp-includes/nav-menu.php */
do_action( 'wp_update_nav_menu', $menu_id );
return $update;
}
/**
* Returns the names of the locations assigned to the menu.
*
* @since 5.9.0
*
* @param int $menu_id The menu id.
* @return string[] The locations assigned to the menu.
*/
protected function get_menu_locations( $menu_id ) {
$locations = get_nav_menu_locations();
$menu_locations = array();
foreach ( $locations as $location => $assigned_menu_id ) {
if ( $menu_id === $assigned_menu_id ) {
$menu_locations[] = $location;
}
}
return $menu_locations;
}
/**
* Updates the menu's locations from a REST request.
*
* @since 5.9.0
*
* @param int $menu_id The menu id to update.
* @param WP_REST_Request $request Full details about the request.
* @return true|WP_Error True on success, a WP_Error on an error updating any of the locations.
*/
protected function handle_locations( $menu_id, $request ) {
if ( ! isset( $request['locations'] ) ) {
return true;
}
$menu_locations = get_registered_nav_menus();
$menu_locations = array_keys( $menu_locations );
$new_locations = array();
foreach ( $request['locations'] as $location ) {
if ( ! in_array( $location, $menu_locations, true ) ) {
return new WP_Error(
'rest_invalid_menu_location',
__( 'Invalid menu location.' ),
array(
'status' => 400,
'location' => $location,
)
);
}
$new_locations[ $location ] = $menu_id;
}
$assigned_menu = get_nav_menu_locations();
foreach ( $assigned_menu as $location => $term_id ) {
if ( $term_id === $menu_id ) {
unset( $assigned_menu[ $location ] );
}
}
$new_assignments = array_merge( $assigned_menu, $new_locations );
set_theme_mod( 'nav_menu_locations', $new_assignments );
return true;
}
/**
* Retrieves the term's schema, conforming to JSON Schema.
*
* @since 5.9.0
*
* @return array Item schema data.
*/
public function get_item_schema() {
if ( $this->schema ) {
return $this->add_additional_fields_schema( $this->schema );
}
$schema = parent::get_item_schema();
unset( $schema['properties']['count'], $schema['properties']['link'], $schema['properties']['taxonomy'] );
$schema['properties']['locations'] = array(
'description' => __( 'The locations assigned to the menu.' ),
'type' => 'array',
'items' => array(
'type' => 'string',
),
'context' => array( 'view', 'edit' ),
'arg_options' => array(
'validate_callback' => static function ( $locations, $request, $param ) {
$valid = rest_validate_request_arg( $locations, $request, $param );
if ( true !== $valid ) {
return $valid;
}
$locations = rest_sanitize_request_arg( $locations, $request, $param );
foreach ( $locations as $location ) {
if ( ! array_key_exists( $location, get_registered_nav_menus() ) ) {
return new WP_Error(
'rest_invalid_menu_location',
__( 'Invalid menu location.' ),
array(
'location' => $location,
)
);
}
}
return true;
},
),
);
$schema['properties']['auto_add'] = array(
'description' => __( 'Whether to automatically add top level pages to this menu.' ),
'context' => array( 'view', 'edit' ),
'type' => 'boolean',
);
$this->schema = $schema;
return $this->add_additional_fields_schema( $this->schema );
}
}
=> 'ja',
'Javanese' => 'jv',
'Kannada' => 'kn',
'Kanuri' => 'kr',
'Kashmiri' => 'ks',
'Kazakh' => 'kk',
'Kikuyu' => 'ki',
'Kinyarwanda' => 'rw',
'Kirghiz' => 'ky',
'Kirundi' => 'rn',
'Komi' => 'kv',
'Kongo' => 'kg',
'Korean' => 'ko',
'Kurdish' => 'ku',
'Kwanyama' => 'kj',
'Laothian' => 'lo',
'Latvian' => 'lv',
'Lingala' => 'ln',
'Lithuanian' => 'lt',
'Luganda' => 'lg',
'Luxembourgish' => 'lb',
'Macedonian' => 'mk',
'Malagasy' => 'mg',
'Malay' => 'ms',
'Malayalam' => 'ml',
'Maldivian' => 'dv',
'Maltese' => 'mt',
'Manx' => 'gv',
'Maori' => 'mi',
'Marathi' => 'mr',
'Marshallese' => 'mh',
'Moldavian' => 'mo',
'Mongolian' => 'mn',
'Nauru' => 'na',
'Navajo' => 'nv',
'Ndonga' => 'ng',
'Nepali' => 'ne',
'North Ndebele' => 'nd',
'Northern Sami' => 'se',
'Norwegian Bokmål' => 'no',
'Norwegian Nynorsk' => 'nn',
'Occitan' => 'oc',
'Old Slavonic' => 'cu',
'Oriya' => 'or',
'Oromo' => 'om',
'Ossetian' => 'os',
'Pali' => 'pi',
'Pashto' => 'ps',
'Persian' => 'fa',
'Polish' => 'pl',
'Portuguese, Brazil' => 'pt-br',
'Portuguese, Portugal' => 'pt',
'Punjabi' => 'pa',
'Quechua' => 'qu',
'Rhaeto-Romance' => 'rm',
'Romanian' => 'ro',
'Russian' => 'ru',
'Samoan' => 'sm',
'Sango' => 'sg',
'Sanskrit' => 'sa',
'Sardinian' => 'sc',
'Scots Gaelic' => 'gd',
'Serbian(Cyrillic)' => 'sr',
'Serbian(Latin)' => 'sr-latn',
'Serbo-Croatian' => 'sh',
'Sesotho' => 'st',
'Setswana' => 'tn',
'Shona' => 'sn',
'Sindhi' => 'sd',
'Singhalese' => 'si',
'Siswati' => 'ss',
'Slavic' => 'sla',
'Slovak' => 'sk',
'Slovenian' => 'sl',
'Somali' => 'so',
'South Ndebele' => 'nr',
'Spanish' => 'es',
'Sudanese' => 'su',
'Swahili' => 'sw',
'Swedish' => 'sv',
'Tagalog' => 'tl',
'Tahitian' => 'ty',
'Tajik' => 'tg',
'Tamil' => 'ta',
'Tatar' => 'tt',
'Telugu' => 'te',
'Thai' => 'th',
'Tibetan' => 'bo',
'Tigrinya' => 'ti',
'Tonga' => 'to',
'Tsonga' => 'ts',
'Turkish' => 'tr',
'Turkmen' => 'tk',
'Twi' => 'tw',
'Uighur' => 'ug',
'Ukrainian' => 'uk',
'Urdu' => 'ur',
'Uzbek' => 'uz',
'Venda' => 've',
'Vietnamese' => 'vi',
'Welsh' => 'cy',
'Wolof' => 'wo',
'Xhosa' => 'xh',
'Yiddish' => 'yi',
'Yoruba' => 'yo',
'Zhuang' => 'za',
'Zulu' => 'zu',
);
}
return $this->languages;
}
/**
* Localize list of languages.
*
* @return array
*/
public function load_config() {
$data = array();
foreach ( $this->get_languages() as $language => $code ) {
$data[] = array(
'code' => $code,
'name' => $language,
);
}
return $data;
}
public function is_cky_translated($lang) {
return in_array($lang,$this->cky_translated);
}
public static function get_upload_path( $path = '' ) {
$uploads = wp_upload_dir();
$upload_dir = $uploads['basedir'] . '/cookieyes/' . $path;
if ( !is_dir( $upload_dir) ) {
wp_mkdir_p($upload_dir);
}
return trailingslashit( $upload_dir );
}
public function download( $src ) {
require_once( ABSPATH . 'wp-admin/includes/file.php' );
$upload_dir = $this->get_upload_path('languages/banners/');
if ( ! file_exists( $upload_dir ) ) {
wp_mkdir_p( $upload_dir, 0755);
}
//download file
$tmpfile = download_url( $src, $timeout = 25 );
$file = $upload_dir . basename( $src );
//check for errors
if ( !is_wp_error( $tmpfile ) ) {
//remove current file
if ( file_exists( $file ) ) {
unlink( $file );
}
//in case the server prevents deletion, we check it again.
if ( ! file_exists( $file ) ) {
copy( $tmpfile, $file );
}
} else {
return $tmpfile;
}
if ( is_string( $tmpfile ) && file_exists( $tmpfile ) ) {
unlink( $tmpfile );
}
}
public function get_translations($lang) {
if ($lang != 'en' && $this->is_cky_translated($lang)) {
$upload_dir = wp_upload_dir();
$contents = cky_read_json_file( $upload_dir['basedir'] . '/cookieyes/languages/banners/' . esc_html( $lang ) . '.json' );
if ( empty( $contents ) ) {
$this->download( self::API_BASE_PATH . "languages/" . esc_html( $lang ) . ".json" );
}
}
return true;
}
}
Fatal error: Uncaught Error: Class 'CookieYes\Lite\Admin\Modules\Languages\Includes\Controller' not found in /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/admin/modules/languages/class-languages.php:30
Stack trace:
#0 /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/includes/class-modules.php(54): CookieYes\Lite\Admin\Modules\Languages\Languages->init()
#1 /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/admin/class-admin.php(179): CookieYes\Lite\Includes\Modules->__construct('languages')
#2 /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/admin/class-admin.php(81): CookieYes\Lite\Admin\Admin->load_modules()
#3 /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/includes/class-cli.php(153): CookieYes\Lite\Admin\Admin->__construct('cookie-law-info', '3.2.4')
#4 /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/includes/class-cli.php(95): CookieYes\Lite\Includes\CLI->defi in /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/admin/modules/languages/class-languages.php on line 30