Plugin Directory

Changeset 2995913


Ignore:
Timestamp:
11/14/2023 03:38:05 PM (2 years ago)
Author:
arstudios
Message:

Release 1.7.3.

Location:
constellation-client-portal
Files:
131 added
7 edited

Legend:

Unmodified
Added
Removed
  • constellation-client-portal/trunk/README.txt

    r2992399 r2995913  
    55Requires at least: 5.0.0
    66Tested up to: 6.4
    7 Stable tag: 1.7.2
     7Stable tag: 1.7.3
    88Requires PHP: 7.4
    99License: GPLv3 or later
     
    200200
    201201== Changelog ==
     202
     203= 1.7.3 (Pro) - 2023-11-14 =
     204* Update: All core uptates.
     205
     206= 1.7.3 (Core) - 2023-11-14 =
     207* Update: Updated company, client page, file, and invoice post type capabilities to fix conflict with WordPress.com hosted single site instances (not multisite).
     208* Update: Updated the user profile tooltips to only display for admins.
    202209
    203210= 1.7.2 (Pro) - 2023-11-8 =
  • constellation-client-portal/trunk/admin/class-ars-constellation-client-portal-admin.php

    r2973972 r2995913  
    24362436                    <label for="client_status">
    24372437                        <?php _e("Client Status"); ?>
    2438                         <span class="accp-admin-tooltip-icon">i</span>
    2439                         <span class="accp-wp-admin-tooltip accp-wp-admin-tooltip-dark accp-wp-admin-has-tooltip-center accp-user-status-tooltip">A status of <strong>Inactive</strong> or <strong>Pending</strong> will prevent the user from accessing client pages, invoices, and files.</span>
     2438
     2439                        <?php if( is_user_logged_in() && current_user_can('manage_options') ): ?>
     2440
     2441                            <span class="accp-admin-tooltip-icon">i</span>
     2442                           
     2443                            <span class="accp-wp-admin-tooltip accp-wp-admin-tooltip-dark accp-wp-admin-has-tooltip-center accp-user-status-tooltip">A status of <strong>Inactive</strong> or <strong>Pending</strong> will prevent the user from accessing client pages, invoices, and files.</span>
     2444
     2445                        <?php endif; ?>
     2446
    24402447                    </label>
    24412448                </th>
  • constellation-client-portal/trunk/admin/class-ars-constellation-client-portal-client-pages.php

    r2946134 r2995913  
    117117            'rewrite' => array('slug' => $rewrite_slug),       
    118118            'capabilities' => array(
    119                 'edit_post' => 'update_core',
    120                 'edit_posts' => 'update_core',
    121                 'edit_others_posts' => 'update_core',
    122                 'publish_posts' => 'update_core',
    123                 'read_post' => 'update_core',
    124                 'read_private_posts' => 'update_core',
    125                 'delete_post' => 'update_core',
    126                 'delete_posts' => 'update_core'
     119                'edit_post' => 'manage_options',
     120                'edit_posts' => 'manage_options',
     121                'edit_others_posts' => 'manage_options',
     122                'publish_posts' => 'manage_options',
     123                'read_post' => 'manage_options',
     124                'read_private_posts' => 'manage_options',
     125                'delete_post' => 'manage_options',
     126                'delete_posts' => 'manage_options'
    127127            ),     
    128128        );
  • constellation-client-portal/trunk/admin/class-ars-constellation-client-portal-company.php

    r2992399 r2995913  
    109109            'rewrite' => false,
    110110            'capabilities' => array(
    111                 'edit_post' => 'update_core',
    112                 'edit_posts' => 'update_core',
    113                 'edit_others_posts' => 'update_core',
    114                 'publish_posts' => 'update_core',
    115                 'read_post' => 'update_core',
    116                 'read_private_posts' => 'update_core',
    117                 'delete_post' => 'update_core',
    118                 'delete_posts' => 'update_core'
     111                'edit_post' => 'manage_options',
     112                'edit_posts' => 'manage_options',
     113                'edit_others_posts' => 'manage_options',
     114                'publish_posts' => 'manage_options',
     115                'read_post' => 'manage_options',
     116                'read_private_posts' => 'manage_options',
     117                'delete_post' => 'manage_options',
     118                'delete_posts' => 'manage_options'
    119119            )
    120120        );
  • constellation-client-portal/trunk/admin/class-ars-constellation-client-portal-file.php

    r2987566 r2995913  
    109109            'rewrite' => $rewrite_slug !== false ? array('slug' => $rewrite_slug) : false,
    110110            'capabilities' => array(
    111                 'edit_post' => 'update_core',
    112                 'edit_posts' => 'update_core',
    113                 'edit_others_posts' => 'update_core',
    114                 'publish_posts' => 'update_core',
    115                 'read_post' => 'update_core',
    116                 'read_private_posts' => 'update_core',
    117                 'delete_post' => 'update_core',
    118                 'delete_posts' => 'update_core'
     111                'edit_post' => 'manage_options',
     112                'edit_posts' => 'manage_options',
     113                'edit_others_posts' => 'manage_options',
     114                'publish_posts' => 'manage_options',
     115                'read_post' => 'manage_options',
     116                'read_private_posts' => 'manage_options',
     117                'delete_post' => 'manage_options',
     118                'delete_posts' => 'manage_options'
    119119            )
    120120        );
  • constellation-client-portal/trunk/admin/class-ars-constellation-client-portal-invoice.php

    r2946134 r2995913  
    109109            'rewrite' => $rewrite_slug !== false ? array('slug' => $rewrite_slug) : false,     
    110110            'capabilities' => array(
    111                 'edit_post' => 'update_core',
    112                 'edit_posts' => 'update_core',
    113                 'edit_others_posts' => 'update_core',
    114                 'publish_posts' => 'update_core',
    115                 'read_post' => 'update_core',
    116                 'read_private_posts' => 'update_core',
    117                 'delete_post' => 'update_core',
    118                 'delete_posts' => 'update_core'
     111                'edit_post' => 'manage_options',
     112                'edit_posts' => 'manage_options',
     113                'edit_others_posts' => 'manage_options',
     114                'publish_posts' => 'manage_options',
     115                'read_post' => 'manage_options',
     116                'read_private_posts' => 'manage_options',
     117                'delete_post' => 'manage_options',
     118                'delete_posts' => 'manage_options'
    119119            )
    120120        );
  • constellation-client-portal/trunk/ars-constellation-client-portal.php

    r2992399 r2995913  
    55 * Plugin URI:        https://adrianrodriguezstudios.com/constellation-client-portal/
    66 * Description:       Create private pages for each of your clients, post private files, and protect your client files from unauthorized users and search engines.  <strong>Important:</strong> All Site-level File Protection features will cease to function if the plugin is disabled or uninstalled.
    7  * Version:           1.7.2
     7 * Version:           1.7.3
    88 * Author:            ARS
    99 * Author URI:        https://adrianrodriguezstudios.com
     
    5555     */
    5656    define('ACCP_PLUGIN_NAME', 'ARS_CONSTELLATION_CLIENT_PORTAL');
    57     define('ACCP_PLUGIN_VERSION', '1.7.2'); // Change the version in the header as well.
     57    define('ACCP_PLUGIN_VERSION', '1.7.3'); // Change the version in the header as well.
    5858    define( ACCP_PLUGIN_NAME, ACCP_PLUGIN_VERSION );
    5959    define('ACCP_PLUGIN_FILE_NAME', __FILE__);
Note: See TracChangeset for help on using the changeset viewer.