Plugin Directory

Changeset 2982658


Ignore:
Timestamp:
10/23/2023 02:52:51 PM (2 years ago)
Author:
appfulapp
Message:

Handle membership update hooks

Location:
appful-app
Files:
3 deleted
5 edited
248 copied

Legend:

Unmodified
Added
Removed
  • appful-app/tags/3.1.15/appful-app.php

    r2978062 r2982658  
    1212 * Plugin URI:        https://appful.io
    1313 * Description:       Appful® is the number 1 plugin for turning your WordPress Content into a native, beautiful app on iOS & Android in under 5 minutes.
    14  * Version:           3.1.14
     14 * Version:           3.1.15
    1515 * Requires at least: 5.8
    1616 * Requires PHP:      7.4
  • appful-app/tags/3.1.15/includes/custom_taxonomies/AppfulTaxonomies.php

    r2907312 r2982658  
    3838            "show_in_quick_edit" => true,
    3939            "capabilities"       => [
    40                 "manage_terms" => "",
    41                 "edit_terms"   => "",
    42                 "delete_terms" => "",
     40                "manage_terms" => "god",
     41                "edit_terms"   => "god",
     42                "delete_terms" => "god",
    4343                "assign_terms" => "edit_posts"
    4444            ],
  • appful-app/tags/3.1.15/includes/hooks/UserHook.php

    r2920030 r2982658  
    1717        add_action(
    1818            "user_register",
     19            function ( int $user_id ) {
     20                $this->on_save_user( $user_id );
     21            },
     22            10,
     23            1,
     24        );
     25
     26        add_action(
     27            "profile_update",
     28            function ( int $user_id ) {
     29                $this->on_save_user( $user_id );
     30            },
     31            10,
     32            1,
     33        );
     34
     35        add_action(
     36            "appful_user_roles_update",
    1937            function ( int $user_id ) {
    2038                $this->on_save_user( $user_id );
  • appful-app/tags/3.1.15/readme.txt

    r2978062 r2982658  
    66Tested up to: 6.3
    77Requires PHP: 7.4
    8 Stable tag: 3.1.14
     8Stable tag: 3.1.15
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • appful-app/trunk/appful-app.php

    r2978062 r2982658  
    1212 * Plugin URI:        https://appful.io
    1313 * Description:       Appful® is the number 1 plugin for turning your WordPress Content into a native, beautiful app on iOS & Android in under 5 minutes.
    14  * Version:           3.1.14
     14 * Version:           3.1.15
    1515 * Requires at least: 5.8
    1616 * Requires PHP:      7.4
  • appful-app/trunk/includes/custom_taxonomies/AppfulTaxonomies.php

    r2907312 r2982658  
    3838            "show_in_quick_edit" => true,
    3939            "capabilities"       => [
    40                 "manage_terms" => "",
    41                 "edit_terms"   => "",
    42                 "delete_terms" => "",
     40                "manage_terms" => "god",
     41                "edit_terms"   => "god",
     42                "delete_terms" => "god",
    4343                "assign_terms" => "edit_posts"
    4444            ],
  • appful-app/trunk/includes/hooks/UserHook.php

    r2920030 r2982658  
    1717        add_action(
    1818            "user_register",
     19            function ( int $user_id ) {
     20                $this->on_save_user( $user_id );
     21            },
     22            10,
     23            1,
     24        );
     25
     26        add_action(
     27            "profile_update",
     28            function ( int $user_id ) {
     29                $this->on_save_user( $user_id );
     30            },
     31            10,
     32            1,
     33        );
     34
     35        add_action(
     36            "appful_user_roles_update",
    1937            function ( int $user_id ) {
    2038                $this->on_save_user( $user_id );
  • appful-app/trunk/readme.txt

    r2978062 r2982658  
    66Tested up to: 6.3
    77Requires PHP: 7.4
    8 Stable tag: 3.1.14
     8Stable tag: 3.1.15
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.