Plugin Directory

Changeset 2797153


Ignore:
Timestamp:
10/11/2022 12:57:18 PM (3 years ago)
Author:
tschutter
Message:

bump stable tag

Location:
column-shortcodes
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • column-shortcodes/tags/1.0.1/column-shortcodes.php

    r2361095 r2797153  
    1212License:        GPLv2
    1313
    14 Copyright 2011-2017  Codepress  [email protected]
     14Copyright 2011-2023  Codepress  [email protected]
    1515
    1616This program is free software; you can redistribute it and/or modify
     
    117117    public function admin_styles() {
    118118        if ( $this->has_permissions() && $this->is_edit_screen() ) {
    119             wp_enqueue_style( 'cpsh-admin', $this->get_url() . '/assets/css/admin.css', array(), $this->get_version(), 'all' );
     119            wp_enqueue_style( 'cpsh-admin', $this->get_url() . 'assets/css/admin.css', array(), $this->get_version(), 'all' );
    120120
    121121            if ( is_rtl() ) {
    122                 wp_enqueue_style( 'cpsh-admin-rtl', $this->get_url() . '/assets/css/admin-rtl.css', array(), $this->get_version(), 'all' );
     122                wp_enqueue_style( 'cpsh-admin-rtl', $this->get_url() . 'assets/css/admin-rtl.css', array(), $this->get_version(), 'all' );
    123123            }
    124124        }
     
    134134    public function admin_scripts( $plugins ) {
    135135        if ( $this->has_permissions() && $this->is_edit_screen() ) {
    136             wp_enqueue_script( 'cpsh-admin', $this->get_url() . '/assets/js/admin.js', array( 'jquery' ), $this->get_version() );
    137             wp_enqueue_script( 'jquery-cookie', $this->get_url() . '/assets/js/jquery.ck.js', array( 'jquery' ), $this->get_version() );
     136            wp_enqueue_script( 'cpsh-admin', $this->get_url() . 'assets/js/admin.js', array( 'jquery' ), $this->get_version() );
     137            wp_enqueue_script( 'jquery-cookie', $this->get_url() . 'assets/js/jquery.ck.js', array( 'jquery' ), $this->get_version() );
    138138        }
    139139
     
    148148    public function admin_plugins_scripts() {
    149149        if ( $this->is_plugins_screen() ) {
    150             wp_enqueue_script( 'cpsh-admin-plugins', $this->get_url() . '/assets/js/plugins.js', array( 'jquery' ), $this->get_version() );
     150            wp_enqueue_script( 'cpsh-admin-plugins', $this->get_url() . 'assets/js/plugins.js', array( 'jquery' ), $this->get_version() );
    151151        }
    152152    }
     
    160160        if ( apply_filters( 'cpsh_load_styles', true ) ) {
    161161            if ( is_rtl() ) {
    162                 wp_enqueue_style( 'cpsh-shortcodes-rtl', $this->get_url() . '/assets/css/shortcodes-rtl.css', array(), $this->get_version(), 'all' );
     162                wp_enqueue_style( 'cpsh-shortcodes-rtl', $this->get_url() . 'assets/css/shortcodes-rtl.css', array(), $this->get_version(), 'all' );
    163163            } else {
    164                 wp_enqueue_style( 'cpsh-shortcodes', $this->get_url() . '/assets/css/shortcodes.css', array(), $this->get_version(), 'all' );
     164                wp_enqueue_style( 'cpsh-shortcodes', $this->get_url() . 'assets/css/shortcodes.css', array(), $this->get_version(), 'all' );
    165165            }
    166166        }
  • column-shortcodes/tags/1.0.1/readme.txt

    r2361095 r2797153  
    44Tags: columns, column, shortcodes, shortcode, divider, layout, posts, editor, wp-admin, admin, codepress, wordpress
    55Requires at least: 4.8
    6 Tested up to: 5.5
     6Tested up to: 6.0.2
    77Stable tag: 1.0.1
    88
     
    250250You will find a .po file in the languages folder which you can use. You can send the translation to <a href="mailto:[email protected]">[email protected]</a>.
    251251
    252 
    253252== Screenshots ==
    254253
  • column-shortcodes/trunk/column-shortcodes.php

    r2361095 r2797153  
    1212License:        GPLv2
    1313
    14 Copyright 2011-2017  Codepress  [email protected]
     14Copyright 2011-2023  Codepress  [email protected]
    1515
    1616This program is free software; you can redistribute it and/or modify
     
    117117    public function admin_styles() {
    118118        if ( $this->has_permissions() && $this->is_edit_screen() ) {
    119             wp_enqueue_style( 'cpsh-admin', $this->get_url() . '/assets/css/admin.css', array(), $this->get_version(), 'all' );
     119            wp_enqueue_style( 'cpsh-admin', $this->get_url() . 'assets/css/admin.css', array(), $this->get_version(), 'all' );
    120120
    121121            if ( is_rtl() ) {
    122                 wp_enqueue_style( 'cpsh-admin-rtl', $this->get_url() . '/assets/css/admin-rtl.css', array(), $this->get_version(), 'all' );
     122                wp_enqueue_style( 'cpsh-admin-rtl', $this->get_url() . 'assets/css/admin-rtl.css', array(), $this->get_version(), 'all' );
    123123            }
    124124        }
     
    134134    public function admin_scripts( $plugins ) {
    135135        if ( $this->has_permissions() && $this->is_edit_screen() ) {
    136             wp_enqueue_script( 'cpsh-admin', $this->get_url() . '/assets/js/admin.js', array( 'jquery' ), $this->get_version() );
    137             wp_enqueue_script( 'jquery-cookie', $this->get_url() . '/assets/js/jquery.ck.js', array( 'jquery' ), $this->get_version() );
     136            wp_enqueue_script( 'cpsh-admin', $this->get_url() . 'assets/js/admin.js', array( 'jquery' ), $this->get_version() );
     137            wp_enqueue_script( 'jquery-cookie', $this->get_url() . 'assets/js/jquery.ck.js', array( 'jquery' ), $this->get_version() );
    138138        }
    139139
     
    148148    public function admin_plugins_scripts() {
    149149        if ( $this->is_plugins_screen() ) {
    150             wp_enqueue_script( 'cpsh-admin-plugins', $this->get_url() . '/assets/js/plugins.js', array( 'jquery' ), $this->get_version() );
     150            wp_enqueue_script( 'cpsh-admin-plugins', $this->get_url() . 'assets/js/plugins.js', array( 'jquery' ), $this->get_version() );
    151151        }
    152152    }
     
    160160        if ( apply_filters( 'cpsh_load_styles', true ) ) {
    161161            if ( is_rtl() ) {
    162                 wp_enqueue_style( 'cpsh-shortcodes-rtl', $this->get_url() . '/assets/css/shortcodes-rtl.css', array(), $this->get_version(), 'all' );
     162                wp_enqueue_style( 'cpsh-shortcodes-rtl', $this->get_url() . 'assets/css/shortcodes-rtl.css', array(), $this->get_version(), 'all' );
    163163            } else {
    164                 wp_enqueue_style( 'cpsh-shortcodes', $this->get_url() . '/assets/css/shortcodes.css', array(), $this->get_version(), 'all' );
     164                wp_enqueue_style( 'cpsh-shortcodes', $this->get_url() . 'assets/css/shortcodes.css', array(), $this->get_version(), 'all' );
    165165            }
    166166        }
  • column-shortcodes/trunk/readme.txt

    r2361095 r2797153  
    44Tags: columns, column, shortcodes, shortcode, divider, layout, posts, editor, wp-admin, admin, codepress, wordpress
    55Requires at least: 4.8
    6 Tested up to: 5.5
     6Tested up to: 6.0.2
    77Stable tag: 1.0.1
    88
     
    250250You will find a .po file in the languages folder which you can use. You can send the translation to <a href="mailto:[email protected]">[email protected]</a>.
    251251
    252 
    253252== Screenshots ==
    254253
Note: See TracChangeset for help on using the changeset viewer.