Changeset 2750821
- Timestamp:
- 07/01/2022 02:12:07 PM (4 years ago)
- Location:
- thron
- Files:
-
- 1 added
- 6 edited
-
assets/screenshot-5.png (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/class-thron-admin.php (modified) (2 diffs)
-
trunk/admin/class-thron-cron.php (modified) (1 diff)
-
trunk/includes/class-thron-api.php (modified) (1 diff)
-
trunk/includes/class-thron.php (modified) (1 diff)
-
trunk/thron.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
thron/trunk/README.txt
r2741717 r2750821 2 2 Contributors: thronspa, websolutedev 3 3 Tags: DAM 4 Stable tag: 1.2. 14 Stable tag: 1.2.2 5 5 Requires at least: 5.9 6 6 Tested up to: 5.9.2 … … 77 77 == Screenshots == 78 78 1. The Attachment page detail 79 2. Conte t selction from THRON.79 2. Content selction from THRON 80 80 3. Embedding images using the gutenberg block 81 81 4. THRON Plugin settings 82 5. THRON Player gutenberg block 82 83 83 84 84 85 == Changelog == 86 87 = 1.2.2 = 88 - Fix for WordPress.com Hosting 85 89 86 90 = 1.2.1 = -
thron/trunk/admin/class-thron-admin.php
r2741703 r2750821 693 693 'description' => $language->description, 694 694 'guid' => sanitize_title( $file->details->source->fileName ), 695 'title' => sanitize_t itle( $language->name ),695 'title' => sanitize_text_field( $language->name ), 696 696 'filename' => $file->details->source->fileName, 697 697 'mime' => $mime, … … 965 965 'alt' => sanitize_text_field( $language->name ), 966 966 'guid' => sanitize_title( $thron_id ), 967 'post_title' => sanitize_t itle( $language->name ),967 'post_title' => sanitize_text_field( $language->name ), 968 968 'post_content' => $language->description ? $language->description : '', 969 969 'filename' => sanitize_file_name( $file_name ), -
thron/trunk/admin/class-thron-cron.php
r2328652 r2750821 127 127 'alt' => $language->name, 128 128 'guid' => sanitize_title($detail->content->id), 129 'post_title' => sanitize_t itle($language->name),129 'post_title' => sanitize_text_field($language->name), 130 130 'post_content' => $language->description ? $language->description : '', 131 131 'caption' => "", -
thron/trunk/includes/class-thron-api.php
r2741703 r2750821 575 575 } 576 576 577 // Delete token ID578 update_option( 'thron_token_id', null );579 580 // Delete token ID time581 update_option( 'thron_token_id_time', null );582 583 // Delete pkey584 update_option( 'thron_pkey', null );585 586 // Delete tracking context587 update_option( 'thron_tracking_context', null );588 589 // Delete default player template590 update_option( 'thron_playerTemplates', null );591 592 // Delete root folder593 update_option( 'thron_rootCategoryId', null );594 595 // Delete THRON Configurtion596 597 577 $endpoint['loginApp'] = "https://{$this->clientId}-view.thron.com/api/xadmin/resources/apps/loginApp/{$this->clientId}"; 598 578 -
thron/trunk/includes/class-thron.php
r2741703 r2750821 71 71 $this->version = THRON_VERSION; 72 72 } else { 73 $this->version = '1.2. 1';73 $this->version = '1.2.2'; 74 74 } 75 75 $this->plugin_name = 'thron'; -
thron/trunk/thron.php
r2741703 r2750821 17 17 * Plugin URI: 18 18 * Description: Select the assets to insert within your pages directly from the DAM library 19 * Version: 1.2. 119 * Version: 1.2.2 20 20 * Author: THRON 21 21 * Author URI: https://www.thron.com … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'THRON_VERSION', '1.2. 1' );38 define( 'THRON_VERSION', '1.2.2' ); 39 39 define( 'THRON_PLUGIN_URL', plugin_dir_url(__FILE__) ); 40 40 define( 'THRON_PLUGIN_PATH', plugin_dir_path(__FILE__) );
Note: See TracChangeset
for help on using the changeset viewer.