Plugin Directory

Changeset 3229855


Ignore:
Timestamp:
01/27/2025 06:12:27 PM (14 months ago)
Author:
pixer
Message:

v7.4.2

Location:
wp-administration-style/trunk
Files:
6 added
4 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • wp-administration-style/trunk/elementor-ad-eraser/elementor-ad-eraser.php

    r3228476 r3229855  
    22namespace Elementor_Ad_Eraser;
    33
    4 defined('ABSPATH') or die();
     4defined('ABSPATH') || exit();
    55
    66/**
    7  * Plugin Name:                       Elementor Ad Eraser
    8  * Description:                       Removes intrusive ads from the Elementor interface for a cleaner, distraction-free experience.
    9  * Version:                           1.4.0
    10  * Tested up to:                      6.6.2
    11  * Requires at least:                 5.0.0
    12  * Requires PHP:                      7.4.33
    13  * Author:                            babakfp
    14  * Author URI:                        https://babakfp.ir
    15  * License:                           GPLv3 or later
    16  * License URI:                       https://www.gnu.org/licenses/gpl-3.0.html
    17  * Text Domain:                       elementor-ad-eraser
    18  * Domain Path:                       /languages
     7 * Plugin Name:               Elementor Ad Eraser
     8 * Description:               Removes intrusive ads from the Elementor interface for a cleaner, distraction-free experience.
     9 * Version:                   1.4.1
     10 * Requires PHP:              7.4
     11 * Author:                    Babak Farkhoopak
     12 * Author URI:                https://babakfp.ir
     13 * License:                   GPLv3 or later
     14 * License URI:               https://www.gnu.org/licenses/gpl-3.0.html
     15 * Text Domain:               elementor-ad-eraser
     16 * Domain Path:               /languages
    1917 */
    2018
    21 define('ELEMENTOR_AD_ERASER', [
    22     'VERSION' => '1.4.0',
    23     'PATH' => plugin_dir_path(__FILE__),
    24     'URL' => plugin_dir_url(__FILE__),
    25 ]);
     19class Globals {
     20    public static $tag = 'elementor-ad-eraser';
     21    public static $version = '1.4.1';
    2622
    27 require_once ELEMENTOR_AD_ERASER['PATH'] . 'includes/core.php';
     23    public static function url($path) {
     24        return plugin_dir_url(__FILE__) . $path;
     25    }
     26
     27    public static function dir($path) {
     28        return plugin_dir_path(__FILE__) . $path;
     29    }
     30}
     31
     32include_once ABSPATH . 'wp-admin/includes/plugin.php';
     33
     34if (is_plugin_active('elementor/elementor.php')) {
     35    require Globals::dir('/includes/Core.php');
     36}
  • wp-administration-style/trunk/elementor-ad-eraser/index.php

    r3227777 r3229855  
    11<?php
    2 defined('ABSPATH') or die();
     2defined('ABSPATH') || exit();
  • wp-administration-style/trunk/readme.txt

    r3228897 r3229855  
    11=== استایل مدیریت وردپرس ===
    2 Stable tag:                 7.4.1
    3 Version:                    7.4.1
     2Stable tag:                 7.4.2
     3Version:                    7.4.2
    44Tested up to:               6.7
    55Requires at least:          5.0
     
    3636
    3737ایشالا اگه وردپرس ظاهرکاربری جدید رو منتشر کنه٬ رو اون کار میکنیم.
     38
     39= 7.4.2 =
     40- اصلاحات مربوط به تبلیغات المنتور.
    3841
    3942= 7.4.1 =
  • wp-administration-style/trunk/wp-administration-style.php

    r3228897 r3229855  
    77 * Plugin Name:                       استایل مدیریت وردپرس
    88 * Description:                       رابط کاربری و تجربه کاربری داشبورد مدیریت وردپرس را بهبود می‌بخشد.
    9  * Version:                           7.4.1
     9 * Version:                           7.4.2
    1010 * Tested up to:                      6.7
    1111 * Requires at least:                 5.0
     
    2020
    2121define('WP_ADMINISTRATION_STYLE', [
    22     'VERSION' => '7.4.1',
     22    'VERSION' => '7.4.2',
    2323    'PATH' => plugin_dir_path(__FILE__),
    2424    'URL' => plugin_dir_url(__FILE__),
Note: See TracChangeset for help on using the changeset viewer.