PluginProbe
Code Engine – PHP Snippets, AI Functions & Automation for WordPress / 0.4.0
Code Engine – PHP Snippets, AI Functions & Automation for WordPress v0.4.0
0.5.7 0.5.6 0.5.5 0.5.4 0.5.3 0.5.2 0.5.1 0.5.0 0.4.9 0.4.8 0.4.7 0.4.6 trunk 0.0.1 0.0.2 0.2.8 0.2.9 0.3.0 0.3.1 0.3.2 0.3.3 0.3.4 0.3.5 0.3.6 0.3.7 All 33 releases
← All changes | common/admin.php +22 -473 0.5.70.4.0 View file →
@@ -3,12 +3,10 @@
3 3 if ( !class_exists( 'MeowKit_MWCODE_Admin' ) ) {
4 4
5 5 class MeowKit_MWCODE_Admin {
6 6 public static $loaded = false;
7 - public static $version = '5.0';
8 - public static $admin_version = '5.0';
9 - public static $network_license_modal_added = false;
10 - public static $network_license_plugins = [];
7 + public static $version = '4.0';
8 + public static $admin_version = '4.0';
11 9
12 10 /**
13 11 * Storage for instances that need deferred initialization.
14 12 *
@@ -157,13 +155,8 @@
157 155 if ( $page === 'meowapps-main-menu' ) {
158 156 add_filter( 'admin_footer_text', [ $this, 'admin_footer_text' ], 100000, 1 );
159 157 }
160 158
161 - // Promote AI Engine on the WordPress 7 Connectors page when AI Engine
162 - // itself isn't installed. When AI Engine is active, its own banner
163 - // takes over — so this path only runs on "bare" Meow Apps installs.
164 - add_action( 'admin_enqueue_scripts', [ $this, 'maybe_render_wpai_promo' ] );
165 -
166 159 MeowKit_MWCODE_Admin::$loaded = true;
167 160 }
168 161
169 162 // PER-INSTANCE SETUP: Run for each plugin that uses this library
@@ -202,233 +195,22 @@
202 195 if ( !$isActive ) {
203 196 return $links;
204 197 }
205 198 $isIssue = $this->isPro && !$this->is_registered();
206 -
207 - // The licenser already knows WHY validation failed and stores it as
208 - // license['issue'] (licenser.php), but this badge used to render a flat
209 - // "License Issue" for every case. That sent people to support to ask a
210 - // question the plugin could have answered: the most common one by far is a
211 - // licence whose activation slot is held by another site, which reads as
212 - // "my licence is broken" and gets reported as a billing problem.
213 - $issueLabel = __( 'License Issue', $this->domain );
214 - if ( $isIssue ) {
215 - $license = get_option( $this->prefix . '_license', '' );
216 - $issue = is_array( $license ) && !empty( $license['issue'] ) ? $license['issue'] : null;
217 - // Codes the store actually sends. Verified against EDD Software Licensing
218 - // rather than guessed: an invented key would silently never match, and a
219 - // wrong label is worse than the generic one.
220 - $labels = [
221 - // `error` codes, from a failed activation.
222 - 'no_activations_left' => __( 'License in use on another site', $this->domain ),
223 - 'expired' => __( 'License expired', $this->domain ),
224 - 'disabled' => __( 'License revoked', $this->domain ),
225 - 'missing' => __( 'License key not recognized', $this->domain ),
226 - 'key_mismatch' => __( 'License key not recognized', $this->domain ),
227 - 'item_name_mismatch' => __( 'License is for another plugin', $this->domain ),
228 - 'invalid_item_id' => __( 'License is for another plugin', $this->domain ),
229 - 'missing_item_id' => __( 'License is for another plugin', $this->domain ),
230 - 'bundle_activation_not_allowed' => __( 'This license cannot be activated directly', $this->domain ),
231 - // `license` statuses, when the key is known but not valid here.
232 - 'site_inactive' => __( 'License not activated on this site', $this->domain ),
233 - 'inactive' => __( 'License not activated on this site', $this->domain ),
234 - // Genuinely no answer from the store. NOT invalid_response, which means the
235 - // store replied and we could not make sense of it: blaming the connection
236 - // there would send people chasing a firewall that is working fine.
237 - 'no_response' => __( 'License server unreachable', $this->domain ),
199 + if ( strpos( $pathName, $thisPathName ) !== false ) {
200 + $new_links = [
201 + 'settings' =>
202 + sprintf( __( '<a href="admin.php?page=%s_settings">Settings</a>', $this->domain ), $this->prefix ),
203 + 'license' =>
204 + $this->is_registered() ?
205 + ( '<span style="color: #a75bd6;">' . __( 'Pro Version', $this->domain ) . '</span>' ) :
206 + ( $isIssue ? ( sprintf( '<span style="color: #ff3434;">' . __( 'License Issue', $this->domain ), $this->prefix ) . '</span>' ) : ( sprintf( '<span>' . __( '<a target="_blank" href="https://meowapps.com">Get the <u>Pro Version</u></a>', $this->domain ), $this->prefix ) . '</span>' ) ),
238 207 ];
239 - if ( $issue !== null && isset( $labels[ $issue ] ) ) {
240 - $issueLabel = $labels[ $issue ];
241 - }
242 - }
243 - if ( strpos( $pathName, $thisPathName ) !== false ) {
244 - // In network admin, handle differently (no settings page available)
245 - if ( is_network_admin() ) {
246 - if ( $this->isPro && !$this->is_registered() ) {
247 - // Show "Register License" link for unregistered Pro plugins
248 - $new_links = [
249 - 'license' => sprintf(
250 - '<a href="#" class="meowapps-network-license-link" data-prefix="%s" data-plugin="%s" style="color: #d63638;">%s</a>',
251 - esc_attr( $this->prefix ),
252 - esc_attr( $this->nice_name_from_file( $this->mainfile ) ),
253 - __( 'Register License', $this->domain )
254 - ),
255 - ];
256 - // Track this plugin for the modal
257 - self::$network_license_plugins[ $this->prefix ] = $this->nice_name_from_file( $this->mainfile );
258 - // Add modal output hook (only once)
259 - if ( !self::$network_license_modal_added ) {
260 - add_action( 'admin_footer', [ __CLASS__, 'output_network_license_modal' ] );
261 - self::$network_license_modal_added = true;
262 - }
263 - }
264 - elseif ( $this->isPro && $this->is_registered() ) {
265 - // Pro plugin is registered
266 - $new_links = [
267 - 'license' => '<span style="color: #a75bd6;">' . __( 'Pro Version', $this->domain ) . '</span>',
268 - ];
269 - }
270 - else {
271 - // Free plugin
272 - $new_links = [
273 - 'license' => sprintf( '<span>' . __( '<a target="_blank" href="https://meowapps.com">Get the <u>Pro Version</u></a>', $this->domain ), $this->prefix ) . '</span>',
274 - ];
275 - }
276 - }
277 - else {
278 - // Regular admin - show settings and license status
279 - $new_links = [
280 - 'settings' =>
281 - sprintf( __( '<a href="admin.php?page=%s_settings">Settings</a>', $this->domain ), $this->prefix ),
282 - 'license' =>
283 - $this->is_registered() ?
284 - ( '<span style="color: #a75bd6;">' . __( 'Pro Version', $this->domain ) . '</span>' ) :
285 - ( $isIssue ? ( '<span style="color: #ff3434;">' . esc_html( $issueLabel ) . '</span>' ) : ( sprintf( '<span>' . __( '<a target="_blank" href="https://meowapps.com">Get the <u>Pro Version</u></a>', $this->domain ), $this->prefix ) . '</span>' ) ),
286 - ];
287 - }
288 208 $links = array_merge( $new_links, $links );
289 209 }
290 210 return $links;
291 211 }
292 212
293 - /**
294 - * Output the network license registration modal.
295 - * Called via admin_footer hook in network admin.
296 - */
297 - public static function output_network_license_modal() {
298 - $rest_url = esc_url( rest_url() );
299 - $nonce = wp_create_nonce( 'wp_rest' );
300 - ?>
301 - <div id="meowapps-network-license-modal" style="display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.6); z-index:100000; align-items:center; justify-content:center;">
302 - <div style="background:#fff; padding:24px; border-radius:8px; max-width:450px; width:90%; box-shadow:0 4px 20px rgba(0,0,0,0.3);">
303 - <h2 style="margin:0 0 8px 0; font-size:18px;">Register License</h2>
304 - <p id="meowapps-license-plugin-name" style="margin:0 0 16px 0; color:#666;"></p>
305 - <input type="text" id="meowapps-license-key-input" placeholder="Enter your license key" style="width:100%; padding:10px; font-size:14px; border:1px solid #8c8f94; border-radius:4px; box-sizing:border-box;" />
306 - <p id="meowapps-license-message" style="margin:12px 0 0 0; padding:10px; border-radius:4px; display:none;"></p>
307 - <div style="margin-top:16px; display:flex; gap:10px; justify-content:flex-end;">
308 - <button type="button" id="meowapps-license-cancel" class="button">Cancel</button>
309 - <button type="button" id="meowapps-license-submit" class="button button-primary">Validate & Register</button>
310 - </div>
311 - </div>
312 - </div>
313 - <?php
314 - ob_start();
315 - ?>
316 - (function() {
317 - var modal = document.getElementById('meowapps-network-license-modal');
318 - var input = document.getElementById('meowapps-license-key-input');
319 - var message = document.getElementById('meowapps-license-message');
320 - var pluginName = document.getElementById('meowapps-license-plugin-name');
321 - var submitBtn = document.getElementById('meowapps-license-submit');
322 - var cancelBtn = document.getElementById('meowapps-license-cancel');
323 - var currentPrefix = '';
324 -
325 - function showMessage(text, isError) {
326 - message.textContent = text;
327 - message.style.display = 'block';
328 - message.style.background = isError ? '#fcf0f1' : '#edfaef';
329 - message.style.color = isError ? '#d63638' : '#1e7e34';
330 - message.style.border = '1px solid ' + (isError ? '#d63638' : '#1e7e34');
331 - }
332 -
333 - function hideMessage() {
334 - message.style.display = 'none';
335 - }
336 -
337 - function openModal(prefix, plugin) {
338 - currentPrefix = prefix;
339 - pluginName.textContent = plugin;
340 - input.value = '';
341 - hideMessage();
342 - submitBtn.disabled = false;
343 - submitBtn.textContent = 'Validate & Register';
344 - modal.style.display = 'flex';
345 - input.focus();
346 - }
347 -
348 - function closeModal() {
349 - modal.style.display = 'none';
350 - currentPrefix = '';
351 - }
352 -
353 - // Handle click on "Register License" links
354 - document.addEventListener('click', function(e) {
355 - if (e.target.classList.contains('meowapps-network-license-link')) {
356 - e.preventDefault();
357 - var prefix = e.target.getAttribute('data-prefix');
358 - var plugin = e.target.getAttribute('data-plugin');
359 - openModal(prefix, plugin);
360 - }
361 - });
362 -
363 - // Close modal on cancel or clicking outside
364 - cancelBtn.addEventListener('click', closeModal);
365 - modal.addEventListener('click', function(e) {
366 - if (e.target === modal) closeModal();
367 - });
368 -
369 - // Handle escape key
370 - document.addEventListener('keydown', function(e) {
371 - if (e.key === 'Escape' && modal.style.display === 'flex') {
372 - closeModal();
373 - }
374 - });
375 -
376 - // Handle enter key in input
377 - input.addEventListener('keydown', function(e) {
378 - if (e.key === 'Enter') {
379 - submitBtn.click();
380 - }
381 - });
382 -
383 - // Submit license
384 - submitBtn.addEventListener('click', function() {
385 - var licenseKey = input.value.trim();
386 - if (!licenseKey) {
387 - showMessage('Please enter a license key.', true);
388 - return;
389 - }
390 -
391 - submitBtn.disabled = true;
392 - submitBtn.textContent = 'Validating...';
393 - hideMessage();
394 -
395 - var restUrl = '<?php echo $rest_url; ?>meow-licenser/' + currentPrefix + '/v1/set_license/';
396 -
397 - fetch(restUrl, {
398 - method: 'POST',
399 - headers: {
400 - 'Content-Type': 'application/json',
401 - 'X-WP-Nonce': '<?php echo $nonce; ?>'
402 - },
403 - body: JSON.stringify({ serialKey: licenseKey })
404 - })
405 - .then(function(response) { return response.json(); })
406 - .then(function(data) {
407 - if (data.success && data.data && !data.data.issue) {
408 - showMessage('License registered successfully! Reloading...', false);
409 - setTimeout(function() { location.reload(); }, 1500);
410 - } else {
411 - var errorMsg = 'License validation failed.';
412 - if (data.data && data.data.issue) {
413 - errorMsg = 'License issue: ' + data.data.issue;
414 - }
415 - showMessage(errorMsg, true);
416 - submitBtn.disabled = false;
417 - submitBtn.textContent = 'Validate & Register';
418 - }
419 - })
420 - .catch(function(error) {
421 - showMessage('Error: ' + error.message, true);
422 - submitBtn.disabled = false;
423 - submitBtn.textContent = 'Validate & Register';
424 - });
425 - });
426 - })();
427 - <?php
428 - wp_print_inline_script_tag( ob_get_clean() );
429 - }
430 -
431 213 public function request_verify_ssl() {
432 214 return get_option( 'force_sslverify', false );
433 215 }
434 216
@@ -444,12 +226,9 @@
444 226 return $file;
445 227 }
446 228
447 229 public function admin_notices_licensed_free() {
448 - // Verify the nonce before removing the license from a POST request (CSRF protection).
449 - if ( isset( $_POST[$this->prefix . '_reset_sub'] )
450 - && isset( $_POST[ $this->prefix . '_reset_sub_nonce' ] )
451 - && wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST[ $this->prefix . '_reset_sub_nonce' ] ) ), $this->prefix . '_reset_sub' ) ) {
230 + if ( isset( $_POST[$this->prefix . '_reset_sub'] ) ) {
452 231 delete_option( $this->prefix . '_pro_serial' );
453 232 delete_option( $this->prefix . '_license' );
454 233 return;
455 234 }
@@ -459,9 +238,9 @@
459 238 $this->nice_name_from_file( $this->mainfile )
460 239 );
461 240 $html .= '<p>
462 241 <form method="post" action="">
463 - <input type="hidden" name="' . $this->prefix . '_reset_sub" value="true"><input type="hidden" name="' . $this->prefix . '_reset_sub_nonce" value="' . esc_attr( wp_create_nonce( $this->prefix . '_reset_sub' ) ) . '">
242 + <input type="hidden" name="' . $this->prefix . '_reset_sub" value="true">
464 243 <input type="submit" name="submit" id="submit" class="button" value="'
465 244 . __( 'Remove the license', $this->domain ) . '">
466 245 </form>
467 246 </p>';
@@ -471,23 +250,19 @@
471 250
472 251 public function admin_menu_start() {
473 252 // Hide the admin if user doesn't like Meow much
474 253 if ( get_option( 'meowapps_hide_meowapps', false ) ) {
475 - register_setting( 'general', 'meowapps_hide_meowapps', [ 'type' => 'boolean', 'sanitize_callback' => 'rest_sanitize_boolean' ] );
254 + register_setting( 'general', 'meowapps_hide_meowapps' );
476 255 add_settings_field( 'meowapps_hide_ads', 'Meow Apps Menu', [ $this, 'meowapps_hide_dashboard_callback' ], 'general' );
477 256 return;
478 257 }
479 258
480 - // Create standard menu if it does not already exist.
481 - // The cat logo is injected as an <img> inside the menu title (rather than passed as
482 - // the $icon_url argument) so the original SVG fills are preserved — passing it via
483 - // $icon_url makes WordPress add the .svg class and the admin color scheme strips
484 - // the colors to a single fill.
259 + // Create standard menu if it does not already exist
485 260 global $submenu;
486 261 if ( !isset( $submenu[ 'meowapps-main-menu' ] ) ) {
487 262 add_menu_page(
488 263 'Meow Apps',
489 - '<img alt="Meow Apps" class="meowapps-menu-icon" src="' . MeowKit_MWCODE_Admin::$logo . '" />Meow Apps',
264 + '<img alt="Meow Apps" style="width: 21px; margin-left: -28px; position: absolute; margin-top: 2px;" src="' . MeowKit_MWCODE_Admin::$logo . '" />Meow Apps',
490 265 'manage_options',
491 266 'meowapps-main-menu',
492 267 [ $this, 'admin_meow_apps' ],
493 268 '',
@@ -502,46 +277,15 @@
502 277 [ $this, 'admin_meow_apps' ]
503 278 );
504 279 }
505 280
506 - // Position the cat icon so it sits in the standard icon column in both the
507 - // expanded and the collapsed (folded) sidebar.
508 - //
509 - // The image lives inside the .wp-menu-name title (where the original code
510 - // put it) so the <img> renders with its native SVG fills. When the sidebar
511 - // is collapsed, WP hides .wp-menu-name (and everything inside it), so a
512 - // small JS snippet below clones the same <img> into the .wp-menu-image
513 - // slot — which WP keeps visible in both states. We use a real <img>
514 - // (not a background-image) on purpose: at small sizes WP's admin renders
515 - // background-image SVGs noticeably lighter than the equivalent <img>,
516 - // and we want the colored cat in both states.
517 - //
518 - // The !important rules also override an older "display: none" style that
519 - // previous-generation Meow Apps common copies inject for .wp-menu-image;
520 - // if any of them load first, ours still wins.
521 - // Enqueue the menu-icon CSS/JS through the assets API instead of echoing inline tags.
522 - add_action( 'admin_enqueue_scripts', function () {
523 - $css = '
524 - #toplevel_page_meowapps-main-menu .meowapps-menu-icon { width: 20px; height: auto; position: absolute; margin-left: -28px; margin-top: 3px; }
525 - #toplevel_page_meowapps-main-menu .wp-menu-image { display: block !important; position: relative; }
526 - #toplevel_page_meowapps-main-menu .wp-menu-image::before { display: none !important; }
527 - #toplevel_page_meowapps-main-menu .wp-menu-image .meowapps-menu-icon-folded { display: none; position: absolute; top: 50%; left: 50%; transform: translate(-50%, calc(-50% - 3px)); width: 20px; height: auto; }
528 - body.folded #toplevel_page_meowapps-main-menu .wp-menu-image .meowapps-menu-icon-folded { display: block; }
529 - body.folded #toplevel_page_meowapps-main-menu .meowapps-menu-icon { display: none; }
530 - @media only screen and (max-width: 960px) {
531 - body.auto-fold #toplevel_page_meowapps-main-menu .wp-menu-image .meowapps-menu-icon-folded { display: block; }
532 - body.auto-fold #toplevel_page_meowapps-main-menu .meowapps-menu-icon { display: none; }
533 - }';
534 - wp_add_inline_style( 'admin-menu', $css );
535 -
536 - // Clone the in-title cat icon into the .wp-menu-image slot (CSS shows it only when folded).
537 - $js = 'document.addEventListener("DOMContentLoaded", function () {'
538 - . 'var li = document.getElementById("toplevel_page_meowapps-main-menu"); if ( !li ) { return; }'
539 - . 'var src = li.querySelector(".meowapps-menu-icon"); var slot = li.querySelector(".wp-menu-image");'
540 - . 'if ( !src || !slot || slot.querySelector(".meowapps-menu-icon-folded") ) { return; }'
541 - . 'var clone = src.cloneNode(); clone.className = "meowapps-menu-icon-folded"; clone.removeAttribute("style"); slot.appendChild(clone);'
542 - . '});';
543 - wp_add_inline_script( 'common', $js );
281 + // Add CSS to hide the default icon
282 + add_action( 'admin_head', function () {
283 + echo '<style>
284 + #toplevel_page_meowapps-main-menu .wp-menu-image {
285 + display: none;
286 + }
287 + </style>';
544 288 } );
545 289 }
546 290
547 291 public function meowapps_hide_dashboard_callback() {
@@ -585,202 +329,7 @@
585 329 __( 'Thanks for using <a href="https://meowapps.com">Meow Apps</a>! This is the Meow Admin %1$s <br /><i>Loaded from %2$s </i>', $this->domain ),
586 330 MeowKit_MWCODE_Admin::$version,
587 331 __FILE__
588 332 );
589 - }
590 -
591 - /**
592 - * Renders a promo banner on WordPress 7's Connectors page when AI Engine
593 - * isn't installed. Kept self-contained so the common library stays simple:
594 - * no new file, no REST endpoint, dismissal persists in localStorage.
595 - */
596 - public function maybe_render_wpai_promo() {
597 - // WordPress 7+ only.
598 - if ( ! class_exists( 'WP_Connector_Registry' ) ) {
599 - return;
600 - }
601 - // If AI Engine is installed, its own Connectors banner takes over.
602 - if ( class_exists( 'Meow_MWAI_Core' ) ) {
603 - return;
604 - }
605 - // Another Meow Apps plugin's common copy may have rendered already.
606 - if ( defined( 'MEOWAPPS_WPAI_PROMO_RENDERED' ) ) {
607 - return;
608 - }
609 - // Gate on the Connectors screen. The hook suffix differs between the
610 - // direct file (`options-connectors.php`) and the menu-page variant.
611 - $screen = function_exists( 'get_current_screen' ) ? get_current_screen() : null;
612 - $id = $screen ? $screen->id : ( isset( $GLOBALS['hook_suffix'] ) ? $GLOBALS['hook_suffix'] : '' );
613 - $targets = array( 'options-connectors', 'options-connectors.php', 'settings_page_options-connectors-wp-admin' );
614 - if ( ! in_array( $id, $targets, true ) ) {
615 - return;
616 - }
617 - define( 'MEOWAPPS_WPAI_PROMO_RENDERED', true );
618 -
619 - // Install button → WordPress's own plugin-install search page, pre-
620 - // filtered for AI Engine. One click from there to install. This is the
621 - // most reliable path: no custom nonces, native progress UI, native
622 - // filesystem credential prompt if needed.
623 - $can_install = current_user_can( 'install_plugins' );
624 - $install_url = $can_install
625 - ? self_admin_url( 'plugin-install.php?tab=search&type=term&s=AI+Engine' )
626 - : 'https://wordpress.org/plugins/ai-engine/';
627 - $wporg_url = 'https://wordpress.org/plugins/ai-engine/';
628 - $learn_url = 'https://meowapps.com/wordpress-7-ai-engine-gateway/';
629 -
630 - // Title is split so "AI Engine" can carry an anchor to wp.org. Keeping
631 - // the pieces as data (not one HTML string) avoids escaping surprises and
632 - // keeps the translation unit stable.
633 - $payload = array(
634 - 'titleBefore' => __( 'Highly recommended: Let ', 'meowapps' ),
635 - 'titleLink' => __( 'AI Engine', 'meowapps' ),
636 - 'titleAfter' => __( ' handle your connections.', 'meowapps' ),
637 - 'sub' => __( 'One plugin for every provider. Keep your AI setup clean and consistent: monitor your API costs in one place, log every single request, and avoid the mess of juggling separate plugins for each AI model.', 'meowapps' ),
638 - 'install' => __( 'Install AI Engine', 'meowapps' ),
639 - 'learn' => __( 'Learn more', 'meowapps' ),
640 - 'dismiss' => __( 'Dismiss', 'meowapps' ),
641 - 'installUrl' => $install_url,
642 - 'wporgUrl' => $wporg_url,
643 - 'learnUrl' => $learn_url,
644 - );
645 - wp_register_style( 'meowapps-common-inline', false );
646 - wp_enqueue_style( 'meowapps-common-inline' );
647 - ob_start();
648 - ?>
649 - .meowapps-wpai-promo {
650 - margin: 0 0 16px; padding: 14px 18px;
651 - display: flex; align-items: flex-start; gap: 14px;
652 - background: #f0f4ff; border: 1px solid #d6deff; border-radius: 4px;
653 - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
654 - font-size: 13px; line-height: 1.45; color: #1e1e1e;
655 - }
656 - .meowapps-wpai-promo-icon {
657 - width: 32px; height: 32px; border-radius: 50%;
658 - background: #2f5fff; color: #fff;
659 - display: flex; align-items: center; justify-content: center;
660 - flex-shrink: 0;
661 - margin-top: 1px;
662 - }
663 - .meowapps-wpai-promo-icon svg { width: 18px; height: 18px; display: block; }
664 - .meowapps-wpai-promo-body {
665 - flex: 1; min-width: 0;
666 - display: flex; flex-direction: column; gap: 10px;
667 - }
668 - .meowapps-wpai-promo-text strong { font-weight: 700; display: block; margin-bottom: 3px; }
669 - .meowapps-wpai-promo-text span { color: #50575e; }
670 - .meowapps-wpai-promo-titlelink {
671 - color: #2f5fff; text-decoration: none; border-bottom: 1px dashed #2f5fff;
672 - }
673 - .meowapps-wpai-promo-titlelink:hover { color: #2448cc; border-bottom-color: #2448cc; }
674 - .meowapps-wpai-promo-actions {
675 - display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
676 - }
677 - .meowapps-wpai-promo-btn {
678 - appearance: none; border: 1px solid transparent; border-radius: 4px;
679 - padding: 7px 16px; font: inherit; font-size: 12.5px; font-weight: 600;
680 - cursor: pointer; text-decoration: none;
681 - transition: background 0.12s ease, border-color 0.12s ease;
682 - }
683 - .meowapps-wpai-promo-btn-primary { background: #2f5fff; color: #fff; }
684 - .meowapps-wpai-promo-btn-primary:hover { background: #2448cc; color: #fff; }
685 - .meowapps-wpai-promo-btn-secondary { background: #7c3aed; color: #fff; }
686 - .meowapps-wpai-promo-btn-secondary:hover { background: #6527c9; color: #fff; }
687 - .meowapps-wpai-promo-btn-dismiss {
688 - margin-left: auto;
689 - background: transparent; color: #6b7280;
690 - font-weight: 500; padding: 7px 10px;
691 - }
692 - .meowapps-wpai-promo-btn-dismiss:hover { color: #1e1e1e; background: rgba(0,0,0,0.04); }
693 - <?php
694 - wp_add_inline_style( 'meowapps-common-inline', ob_get_clean() );
695 -
696 - wp_register_script( 'meowapps-common-inline', false, array(), false, true );
697 - wp_enqueue_script( 'meowapps-common-inline' );
698 - ob_start();
699 - ?>
700 - (function () {
701 - var D = <?php echo wp_json_encode( $payload ); ?>;
702 - try { if (localStorage.getItem('meowapps-wpai-promo-dismissed') === '1') return; } catch (e) {}
703 -
704 - function build() {
705 - var host = document.createElement('div');
706 - host.className = 'meowapps-wpai-promo';
707 - host.setAttribute('role', 'status');
708 - var iconSvg = '<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 5v14M5 12h14"/></svg>';
709 - host.innerHTML = [
710 - '<span class="meowapps-wpai-promo-icon">', iconSvg, '</span>',
711 - '<div class="meowapps-wpai-promo-body">',
712 - '<div class="meowapps-wpai-promo-text">',
713 - '<strong></strong> <span class="meowapps-wpai-promo-sub"></span>',
714 - '</div>',
715 - '<div class="meowapps-wpai-promo-actions"></div>',
716 - '</div>'
717 - ].join('');
718 - // Title carries an anchor on "AI Engine" → wp.org plugin page.
719 - var strong = host.querySelector('strong');
720 - strong.appendChild(document.createTextNode(D.titleBefore));
721 - var tLink = document.createElement('a');
722 - tLink.href = D.wporgUrl;
723 - tLink.target = '_blank';
724 - tLink.rel = 'noopener noreferrer';
725 - tLink.className = 'meowapps-wpai-promo-titlelink';
726 - tLink.textContent = D.titleLink;
727 - strong.appendChild(tLink);
728 - strong.appendChild(document.createTextNode(D.titleAfter));
729 - host.querySelector('.meowapps-wpai-promo-sub').textContent = D.sub;
730 - var actions = host.querySelector('.meowapps-wpai-promo-actions');
731 -
732 - function link(label, cls, href, newTab) {
733 - var a = document.createElement('a');
734 - a.className = 'meowapps-wpai-promo-btn ' + cls;
735 - a.textContent = label;
736 - a.href = href;
737 - if (newTab) { a.target = '_blank'; a.rel = 'noopener noreferrer'; }
738 - actions.appendChild(a);
739 - return a;
740 - }
741 -
742 - // Install → WordPress's plugin-install search page, pre-filtered.
743 - // User lands on a familiar screen with AI Engine as the top hit and
744 - // can install with the native WordPress UX.
745 - link(D.install, 'meowapps-wpai-promo-btn-primary', D.installUrl, false);
746 - link(D.learn, 'meowapps-wpai-promo-btn-secondary', D.learnUrl, true);
747 -
748 - var d = document.createElement('button');
749 - d.type = 'button';
750 - d.className = 'meowapps-wpai-promo-btn meowapps-wpai-promo-btn-dismiss';
751 - d.textContent = D.dismiss;
752 - d.addEventListener('click', function () {
753 - try { localStorage.setItem('meowapps-wpai-promo-dismissed', '1'); } catch (e) {}
754 - if (host.parentNode) host.parentNode.removeChild(host);
755 - });
756 - actions.appendChild(d);
757 - return host;
758 - }
759 -
760 - function ensure() {
761 - if (document.querySelector('.meowapps-wpai-promo')) return;
762 - var page = document.querySelector('.connectors-page');
763 - if (page) { page.insertBefore(build(), page.firstChild); return; }
764 - var header = document.querySelector('.boot-layout__stage header');
765 - if (header && header.parentNode) {
766 - header.parentNode.insertBefore(build(), header.nextSibling);
767 - }
768 - }
769 -
770 - var tries = 0;
771 - var iv = setInterval(function () {
772 - ensure();
773 - if (document.querySelector('.meowapps-wpai-promo') || ++tries > 40) clearInterval(iv);
774 - }, 120);
775 -
776 - var app = document.getElementById('options-connectors-wp-admin-app')
777 - || document.getElementById('options-connectors-app');
778 - if (app && 'MutationObserver' in window) {
779 - new MutationObserver(ensure).observe(app, { childList: true, subtree: true });
780 - }
781 - })();
782 - <?php
783 - wp_add_inline_script( 'meowapps-common-inline', ob_get_clean() );
784 333 }
785 334 }
786 335 }