Plugin Directory

Changeset 2720831


Ignore:
Timestamp:
05/09/2022 07:00:10 PM (4 years ago)
Author:
gingeds
Message:

Update to version 2.1.1 from GitHub

Location:
force-delete-posts
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • force-delete-posts/tags/2.1.1/admin/forceDeletePosts.php

    r2717602 r2720831  
    2424
    2525    /**
    26      *
    2726     * Enqueue plugin stylesheet
    28      *
    2927     */
    30     public function plugin_styles(): void
     28    public function plugin_styles()
    3129    {
    3230        wp_register_style( 'ls_fd_admin_css',  plugin_dir_url( __FILE__ ) . 'styles.css', false, '1.0.0' );
     
    4038     * @param $defaults
    4139     *
    42      * @return mixed
    4340     */
    44     public function create_column_heading($defaults): mixed
     41    public function create_column_heading($defaults)
    4542    {
    4643        $defaults['ls_fd_column'] = '<span class="ls_fd_label">Force Delete</span>';
     
    6461
    6562    /**
    66      *
    6763     * Delete Post
    68      *
    69      * @return void
    7064     */
    71     public function delete_post(): void
     65    public function delete_post()
    7266    {
    7367        global $post;
  • force-delete-posts/tags/2.1.1/index.php

    r2717602 r2720831  
    44Plugin URI: https://github.com/liamstewart23/WordPressForceDeletePosts
    55Description: Adds the ability for administrators to instantly delete posts by adding a Force Delete Button to the Post List for Pages, Posts, and all Custom Post Types.
    6 Version: 2.1.0
     6Version: 2.1.1
    77Author: Liam Stewart
    88Author URI: https://liamstewart.ca
  • force-delete-posts/tags/2.1.1/readme.txt

    r2717602 r2720831  
    2323
    2424== Changelog ==
     25 = 2.1.1 =
     26 * Fixes issue with PHP <7.1
    2527 = 2.1.0 =
    2628 * Updated deletion confirmation message to include post type singular label
  • force-delete-posts/trunk/admin/forceDeletePosts.php

    r2717602 r2720831  
    2424
    2525    /**
    26      *
    2726     * Enqueue plugin stylesheet
    28      *
    2927     */
    30     public function plugin_styles(): void
     28    public function plugin_styles()
    3129    {
    3230        wp_register_style( 'ls_fd_admin_css',  plugin_dir_url( __FILE__ ) . 'styles.css', false, '1.0.0' );
     
    4038     * @param $defaults
    4139     *
    42      * @return mixed
    4340     */
    44     public function create_column_heading($defaults): mixed
     41    public function create_column_heading($defaults)
    4542    {
    4643        $defaults['ls_fd_column'] = '<span class="ls_fd_label">Force Delete</span>';
     
    6461
    6562    /**
    66      *
    6763     * Delete Post
    68      *
    69      * @return void
    7064     */
    71     public function delete_post(): void
     65    public function delete_post()
    7266    {
    7367        global $post;
  • force-delete-posts/trunk/index.php

    r2717602 r2720831  
    44Plugin URI: https://github.com/liamstewart23/WordPressForceDeletePosts
    55Description: Adds the ability for administrators to instantly delete posts by adding a Force Delete Button to the Post List for Pages, Posts, and all Custom Post Types.
    6 Version: 2.1.0
     6Version: 2.1.1
    77Author: Liam Stewart
    88Author URI: https://liamstewart.ca
  • force-delete-posts/trunk/readme.txt

    r2717602 r2720831  
    2323
    2424== Changelog ==
     25 = 2.1.1 =
     26 * Fixes issue with PHP <7.1
    2527 = 2.1.0 =
    2628 * Updated deletion confirmation message to include post type singular label
Note: See TracChangeset for help on using the changeset viewer.