Changeset 3086147
- Timestamp:
- 05/14/2024 02:19:31 AM (23 months ago)
- Location:
- artistpress/trunk
- Files:
-
- 2 deleted
- 3 edited
-
Admin (deleted)
-
Includes/ArtistPress.php (modified) (10 diffs)
-
admin (deleted)
-
artist-press.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
artistpress/trunk/Includes/ArtistPress.php
r3086143 r3086147 20 20 $this->version = ARTISTPRESS_VERSION; 21 21 } else { 22 $this->version = '1.5. 0';22 $this->version = '1.5.1'; 23 23 } 24 24 $this->name = 'artistpress'; … … 80 80 private function defineAdminHooks() 81 81 { 82 $updater = new \ArtistPress\Admin \Update\V122($this->getPluginName(), $this->getVersion());82 $updater = new \ArtistPress\Administration\Update\V122($this->getPluginName(), $this->getVersion()); 83 83 $updater->run(); 84 84 85 $updater = new \ArtistPress\Admin \Update\V151($this->getPluginName(), $this->getVersion());85 $updater = new \ArtistPress\Administration\Update\V151($this->getPluginName(), $this->getVersion()); 86 86 $updater->run(); 87 87 … … 90 90 91 91 $adminViews = []; 92 $adminViews[] = new \ArtistPress\Admin \View\Dashboard($this->getPluginName(), $this->getVersion());93 $adminViews[] = new \ArtistPress\Admin \View\Settings($this->getPluginName(), $this->getVersion());92 $adminViews[] = new \ArtistPress\Administration\View\Dashboard($this->getPluginName(), $this->getVersion()); 93 $adminViews[] = new \ArtistPress\Administration\View\Settings($this->getPluginName(), $this->getVersion()); 94 94 95 95 foreach ($adminViews as $adminView) { … … 101 101 102 102 $contentViews = []; 103 $contentViews[] = new \ArtistPress\Admin \View\Artist($this->getPluginName(), $this->getVersion());104 $contentViews[] = new \ArtistPress\Admin \View\Venue($this->getPluginName(), $this->getVersion());105 $contentViews[] = new \ArtistPress\Admin \View\Show($this->getPluginName(), $this->getVersion());106 $contentViews[] = new \ArtistPress\Admin \View\Gallery($this->getPluginName(), $this->getVersion());103 $contentViews[] = new \ArtistPress\Administration\View\Artist($this->getPluginName(), $this->getVersion()); 104 $contentViews[] = new \ArtistPress\Administration\View\Venue($this->getPluginName(), $this->getVersion()); 105 $contentViews[] = new \ArtistPress\Administration\View\Show($this->getPluginName(), $this->getVersion()); 106 $contentViews[] = new \ArtistPress\Administration\View\Gallery($this->getPluginName(), $this->getVersion()); 107 107 108 108 foreach ($contentViews as $contentView) { … … 120 120 121 121 $metaBoxes = []; 122 $metaBoxes[] = new \ArtistPress\Admin \Meta\Artist(122 $metaBoxes[] = new \ArtistPress\Administration\Meta\Artist( 123 123 'artist_info', 124 124 __('Artist Information', 'artistpress'), 125 125 'artist' 126 126 ); 127 $metaBoxes[] = new \ArtistPress\Admin \Meta\Venue(127 $metaBoxes[] = new \ArtistPress\Administration\Meta\Venue( 128 128 'venue_details', 129 129 __('Venue Details', 'artistpress'), 130 130 'venue' 131 131 ); 132 $metaBoxes[] = new \ArtistPress\Admin \Meta\Show(132 $metaBoxes[] = new \ArtistPress\Administration\Meta\Show( 133 133 'show_details', 134 134 __('Show Details', 'artistpress'), 135 135 'show' 136 136 ); 137 $metaBoxes[] = new \ArtistPress\Admin \Meta\Gallery(137 $metaBoxes[] = new \ArtistPress\Administration\Meta\Gallery( 138 138 'gallery_content', 139 139 __('Gallery Images', 'artistpress'), … … 147 147 148 148 $settingsSection = []; 149 $settingsSection[] = new \ArtistPress\Admin \Settings\Artist(149 $settingsSection[] = new \ArtistPress\Administration\Settings\Artist( 150 150 $this->getPluginName(), 151 151 $this->getVersion(), … … 155 155 ); 156 156 157 $settingsSection[] = new \ArtistPress\Admin \Settings\ShowList(157 $settingsSection[] = new \ArtistPress\Administration\Settings\ShowList( 158 158 $this->getPluginName(), 159 159 $this->getVersion(), … … 163 163 ); 164 164 165 $settingsSection[] = new \ArtistPress\Admin \Settings\Show(165 $settingsSection[] = new \ArtistPress\Administration\Settings\Show( 166 166 $this->getPluginName(), 167 167 $this->getVersion(), … … 171 171 ); 172 172 173 $settingsSection[] = new \ArtistPress\Admin \Settings\Gallery(173 $settingsSection[] = new \ArtistPress\Administration\Settings\Gallery( 174 174 $this->getPluginName(), 175 175 $this->getVersion(), … … 179 179 ); 180 180 181 $settingsSection[] = new \ArtistPress\Admin \Settings\Upgrade(181 $settingsSection[] = new \ArtistPress\Administration\Settings\Upgrade( 182 182 $this->getPluginName(), 183 183 $this->getVersion(), -
artistpress/trunk/artist-press.php
r3086137 r3086147 6 6 * Author: Tim Scheman 7 7 * Author URI: http;//timscheman.com 8 * Version: 1.5. 08 * Version: 1.5.1 9 9 * License: GPLv2 //look into this to make sure you have ther right license listed. 10 10 * … … 21 21 * Currently plugin version. 22 22 */ 23 define('ARTISTPRESS_VERSION', '1.5. 0' );23 define('ARTISTPRESS_VERSION', '1.5.1' ); 24 24 define('ARTISTPRESS_DIR_PATH', plugin_dir_path(__FILE__)); 25 25 define('ARTISTPRESS_DIR_URL', plugin_dir_url(__DIR__) . 'artistpress'); -
artistpress/trunk/readme.txt
r3086137 r3086147 5 5 Tested up to: 6.5.3 6 6 Requires PHP: 8.0 7 Stable tag: 1.5. 07 Stable tag: 1.5.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 93 93 == Changelog == 94 94 95 = 1.5.1 = 96 * Fix: Conflict with namespacing and previous version directory structure. 97 95 98 = 1.5.0 = 96 99 * Major release with possible breaking changes, please be sure to back-up your site before upgrading.
Note: See TracChangeset
for help on using the changeset viewer.