Plugin Directory

Changeset 3178957


Ignore:
Timestamp:
10/30/2024 04:10:31 PM (17 months ago)
Author:
gfazioli
Message:

Release 1.1.1

Location:
scotty
Files:
211 added
3 edited

Legend:

Unmodified
Added
Removed
  • scotty/trunk/config/menus.php

    r3178906 r3178957  
    2323$items = [];
    2424
     25$items[] =  [
     26  'page_title' => __('Overview', 'scotty'),
     27  'menu_title' => __('Overview', 'scotty'),
     28  'capability' => 'read',
     29
     30  'route' => [
     31    'load' => 'Dashboard\DashboardController@load',
     32    'get' => 'Dashboard\DashboardController@index',
     33  ],
     34];
     35
    2536foreach ($views as $key => $view) {
    2637  $items[$key] = [
     
    4253    'capability' => 'read',
    4354    'icon' => 'logo-menu.png',
    44     'items' => [
    45       [
    46         'page_title' => __('Overview', 'scotty'),
    47         'menu_title' => __('Overview', 'scotty'),
    48         'capability' => 'read',
    49 
    50         'route' => [
    51           'load' => 'Dashboard\DashboardController@load',
    52           'get' => 'Dashboard\DashboardController@index',
    53         ],
    54       ],
    55       ...$items,
    56     ],
     55    'items' =>    $items,
    5756  ],
    5857];
  • scotty/trunk/readme.txt

    r3178906 r3178957  
    55Requires at least: 6.2
    66Tested up to: 6.6
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
  • scotty/trunk/scotty.php

    r3178906 r3178957  
    55 * Plugin URI: https://scotty-plugin.vercel.app
    66 * Description: Your WordPress engineer for superior site maintenance and optimization.
    7  * Version: 1.1.0
     7 * Version: 1.1.1
    88 * Requires at least: 6.2
    99 * Requires PHP: 7.4
Note: See TracChangeset for help on using the changeset viewer.