Changeset 2949274
- Timestamp:
- 08/08/2023 10:48:48 AM (3 years ago)
- Location:
- embed-any-document/trunk
- Files:
-
- 3 edited
-
awsm-embed.php (modified) (4 diffs)
-
language/embed-any-document.pot (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
embed-any-document/trunk/awsm-embed.php
r2940168 r2949274 4 4 * Plugin URI: http://awsm.in/embed-any-documents 5 5 * Description: Embed Any Document WordPress plugin lets you upload and embed your documents easily in your WordPress website without any additional browser plugins like Flash or Acrobat reader. The plugin lets you choose between Google Docs Viewer and Microsoft Office Online to display your documents. 6 * Version: 2.7. 36 * Version: 2.7.4 7 7 * Author: Awsm Innovations 8 8 * Author URI: https://awsm.in … … 20 20 21 21 if ( ! defined( 'AWSM_EMBED_VERSION' ) ) { 22 define( 'AWSM_EMBED_VERSION', '2.7. 3' );22 define( 'AWSM_EMBED_VERSION', '2.7.4' ); 23 23 } 24 24 … … 587 587 } 588 588 589 /** 590 * Register Privacy Policy Content 591 */ 592 public function register_privacy_policy_content() { 593 if ( ! function_exists( 'wp_add_privacy_policy_content' ) ) { 594 return; 595 } 596 597 $content = __( 'The third party tools we are using to display your documents easily may use cookies or similar technologies for technical purposes.These third-party services may set their own cookies on your device to provide additional functionality or integrate certain features.The use of third-party cookies is subject to the respective third party privacy and cookie policies.', 'embed-any-document' ); 598 599 wp_add_privacy_policy_content( 600 'Embed Any Document', 601 wp_kses_post( wpautop( $content, false ) ) 602 ); 603 } 604 605 /** 606 * Admin init functions 607 */ 608 public function admin_init_functions(){ 609 $this->register_eadsettings(); 610 $this->register_privacy_policy_content(); 611 } 612 589 613 /** 590 614 * Admin Functions init … … 594 618 add_action( 'wp_enqueue_media', array( $this, 'embed_helper' ) ); 595 619 add_action( 'admin_menu', array( $this, 'admin_menu' ) ); 596 add_action( 'admin_init', array( $this, ' register_eadsettings' ) );620 add_action( 'admin_init', array( $this, 'admin_init_functions' ) ); 597 621 add_action( 'admin_footer', array( $this, 'embedpopup' ) ); 598 622 add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'settingslink' ) ); -
embed-any-document/trunk/language/embed-any-document.pot
r2940168 r2949274 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Embed Any Document 2.7. 3\n"5 "Project-Id-Version: Embed Any Document 2.7.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/Embed-Any-Documents\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023-0 7-12T05:33:32+00:00\n"12 "POT-Creation-Date: 2023-08-07T08:02:57+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.6.0\n" … … 132 132 msgstr "" 133 133 134 #: awsm-embed.php:644 134 #: awsm-embed.php:597 135 msgid "The third party tools we are using to display your documents easily may use cookies or similar technologies for technical purposes.These third-party services may set their own cookies on your device to provide additional functionality or integrate certain features.The use of third-party cookies is subject to the respective third party privacy and cookie policies." 136 msgstr "" 137 138 #: awsm-embed.php:668 135 139 msgid "Unsupported file content detected. Sorry, you are not allowed to upload this file." 136 140 msgstr "" 137 141 138 #: awsm-embed.php:6 58142 #: awsm-embed.php:682 139 143 msgid "Buy Pro Version" 140 144 msgstr "" 141 145 142 146 #. translators: %1$s: Service provider 143 #: awsm-embed.php:6 61147 #: awsm-embed.php:685 144 148 msgid "Add From %1$s" 145 149 msgstr "" -
embed-any-document/trunk/readme.txt
r2940168 r2949274 113 113 114 114 == Changelog == 115 = V 2.7.4 - 2023-08-07 = 116 * Added: Cookie Policy section. 117 * Code improvements. 115 118 116 119 = V 2.7.3 - 2023-07-12 = … … 131 134 * Fixed: Browser viewer fallback for unsupported browsers not working. 132 135 133 = V 2.6.1 - 2020-06-04 =134 * Fixed: Fatal error during plugin updation in some installations.135 136 136 [See changelog of previous versions](https://raw.githubusercontent.com/awsmin/Embed-Any-Documents/master/CHANGELOG.md) 137 137 138 138 == Upgrade Notice == 139 139 140 = 2.7. 3=141 Improved security.140 = 2.7.4 = 141 Cookie Policy section added.
Note: See TracChangeset
for help on using the changeset viewer.