| @@ -5,31 +5,26 @@ | ||
| 5 | 5 | * Description: Topic helps editors and agencies create content briefs in half the time. |
| 6 | 6 | * Author: Topic |
| 7 | 7 | * License: GPL v2 or later |
| 8 | 8 | * License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 9 | - * Version: 1.0.13 | |
| 9 | + * Version: 1.0.36 | |
| 10 | 10 | */ |
| 11 | 11 | if( ! defined( 'ABSPATH') ) { |
| 12 | 12 | exit; |
| 13 | 13 | } |
| 14 | 14 | |
| 15 | -function topic_enqueue_assets() { | |
| 16 | - wp_enqueue_script( | |
| 17 | - 'topic-gutenberg-sidebar', | |
| 18 | - plugins_url( 'build/index.js', __FILE__ ), | |
| 19 | - array( 'wp-plugins', 'wp-edit-post', 'wp-i18n', 'wp-element' ) | |
| 20 | - ); | |
| 21 | - wp_enqueue_style('topic-sidebar-global', plugins_url( 'build/index.css', __FILE__ ), array(), time(), 'all'); | |
| 22 | -} | |
| 23 | -add_action( 'enqueue_block_editor_assets', 'topic_enqueue_assets' ); | |
| 24 | 15 | |
| 25 | 16 | class useTopicSeo { |
| 26 | 17 | |
| 27 | 18 | |
| 28 | 19 | public function __construct() { |
| 29 | - add_action( 'post_submitbox_misc_actions', array($this, 'add_usetopic_button_classic_editor') ); | |
| 30 | - add_action( 'admin_enqueue_scripts', array($this, 'topic_enqueue_assets_classic') ); | |
| 31 | - add_action('admin_footer', array($this, 'useTopicSeo_sidebar_box')); | |
| 20 | + global $pagenow; | |
| 21 | + if($pagenow == 'post.php' || $pagenow == 'post-new.php'){ | |
| 22 | + add_action( 'post_submitbox_misc_actions', array($this, 'add_usetopic_button_classic_editor') ); | |
| 23 | + add_action( 'admin_enqueue_scripts', array($this, 'topic_enqueue_assets_classic') ); | |
| 24 | + add_action('admin_footer', array($this, 'useTopicSeo_sidebar_box')); | |
| 25 | + add_action( 'enqueue_block_editor_assets', array($this,'topic_enqueue_assets') ); | |
| 26 | + } | |
| 32 | 27 | add_action('wp_ajax_get_permalink_for_post_id', array($this, 'get_permalink_for_post_id')); |
| 33 | 28 | add_action('wp_ajax_search_posts', array($this, 'search_posts')); |
| 34 | 29 | } |
| 35 | 30 | |
| @@ -41,17 +36,67 @@ | ||
| 41 | 36 | $html .= '</div>'; |
| 42 | 37 | $html .= '</div>'; |
| 43 | 38 | echo $html; |
| 44 | 39 | } |
| 40 | + | |
| 41 | + /** | |
| 42 | + * Function to find the file path for index.[hash].js or index-classic.[hash].js | |
| 43 | + * @param string $filePattern - The file pattern to search for (e.g., 'index' or 'index-classic') | |
| 44 | + * @param string $directory - The directory where the build files are located | |
| 45 | + * @return string|null - Returns the full file path or null if not found | |
| 46 | + */ | |
| 47 | + public function getHashedFilePath($filePattern, $directory = 'build') { | |
| 48 | + // Get the full path to the plugin directory | |
| 49 | + $plugin_dir = plugin_dir_path(__FILE__); | |
| 50 | + $full_directory_path = $plugin_dir . $directory; | |
| 51 | + | |
| 52 | + if (!is_dir($full_directory_path)) { | |
| 53 | + return null; | |
| 54 | + } | |
| 55 | + | |
| 56 | + // Define the regex pattern to match files like index.[hash].js or index-classic.[hash].js | |
| 57 | + $pattern = sprintf('/^%s\.[a-f0-9]{8}\.js$/', preg_quote($filePattern, '/')); | |
| 58 | + | |
| 59 | + // Scan the directory for files | |
| 60 | + $files = scandir($full_directory_path); | |
| 61 | + | |
| 62 | + // Iterate through the files to find a match | |
| 63 | + foreach ($files as $file) { | |
| 64 | + if (preg_match($pattern, $file)) { | |
| 65 | + // Return the relative path of the matched file | |
| 66 | + return $directory . '/' . $file; | |
| 67 | + } | |
| 68 | + } | |
| 69 | + | |
| 70 | + // If no match was found, return null | |
| 71 | + return null; | |
| 72 | + } | |
| 73 | + | |
| 74 | + public function topic_enqueue_assets() { | |
| 75 | + $index_file_path = $this->getHashedFilePath('index'); | |
| 76 | + if ($index_file_path === null) { | |
| 77 | + $index_file_path = 'build/index.js'; | |
| 78 | + } | |
| 79 | + wp_enqueue_script( | |
| 80 | + 'topic-gutenberg-sidebar', | |
| 81 | + plugins_url( $index_file_path, __FILE__ ), | |
| 82 | + array( 'wp-plugins', 'wp-edit-post', 'wp-i18n', 'wp-element' ), | |
| 83 | + null | |
| 84 | + ); | |
| 85 | + wp_enqueue_style('topic-sidebar-global', plugins_url( 'build/index.css', __FILE__ ), array(), 'all'); | |
| 86 | + } | |
| 45 | 87 | |
| 46 | 88 | public function topic_enqueue_assets_classic() { |
| 89 | + $index_file_path = $this->getHashedFilePath('index-classic'); | |
| 90 | + if ($index_file_path === null) { | |
| 91 | + $index_file_path = 'build/index-classic.js'; | |
| 92 | + } | |
| 47 | 93 | wp_enqueue_script( |
| 48 | 94 | 'topic-gutenberg-sidebar-classic', |
| 49 | - plugins_url( 'build/index-classic.js', __FILE__ ), | |
| 50 | - array( 'wp-plugins', 'wp-edit-post', 'wp-i18n', 'wp-element' ),time() | |
| 95 | + plugins_url( $index_file_path , __FILE__ ), array('wp-plugins'), null | |
| 51 | 96 | ); |
| 52 | - wp_enqueue_style('topic-classic-sidebar', plugins_url( 'classic-editor/classic.css', __FILE__ ), array(), time(), 'all'); | |
| 53 | - wp_enqueue_style('topic-sidebar-global', plugins_url( 'build/index.css', __FILE__ ), array(), time(), 'all'); | |
| 97 | + wp_enqueue_style('topic-classic-sidebar', plugins_url( 'classic-editor/classic.css', __FILE__ ), array(), 'all'); | |
| 98 | + wp_enqueue_style('topic-sidebar-global', plugins_url( 'build/index.css', __FILE__ ), array(), 'all'); | |
| 54 | 99 | } |
| 55 | 100 | |
| 56 | 101 | public function useTopicSeo_sidebar_box($data) { |
| 57 | 102 | echo '<div id="usetopicData"><div class="closeTopicdata"><strong>'.__( 'Topic SEO Content Optimization Tool', 'usetopic-plugin' ).'</strong><button type="button" class="close" aria-label="Close plugin"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="img" aria-hidden="true" focusable="false"><path d="M12 13.06l3.712 3.713 1.061-1.06L13.061 12l3.712-3.712-1.06-1.06L12 10.938 8.288 7.227l-1.061 1.06L10.939 12l-3.712 3.712 1.06 1.061L12 13.061z"></path></svg><p class="usetopic-tooltip">Close Plugin</p></button></div><div class="content"></div></div>'; |