Changeset 3080209
- Timestamp:
- 05/02/2024 09:01:41 AM (2 years ago)
- Location:
- ag-custom-admin/tags/7.2.3
- Files:
-
- 67 added
- 10 copied
-
. (added)
-
.gitignore (copied) (copied from ag-custom-admin/trunk/.gitignore)
-
ag-custom-admin.html (copied) (copied from ag-custom-admin/trunk/ag-custom-admin.html)
-
changelog.txt (copied) (copied from ag-custom-admin/trunk/changelog.txt) (1 diff)
-
codeception.yml (copied) (copied from ag-custom-admin/trunk/codeception.yml)
-
composer.json (copied) (copied from ag-custom-admin/trunk/composer.json)
-
composer.lock (copied) (copied from ag-custom-admin/trunk/composer.lock)
-
images (added)
-
images/advertising.jpg (added)
-
images/agca-background.png (added)
-
images/agca-logo.svg (added)
-
images/agca.png (added)
-
images/cusmin-logo.svg (added)
-
images/cusminlogo.png (added)
-
images/donate-btn.png (added)
-
images/plugna-logo.svg (added)
-
languages (added)
-
languages/ag-custom-admin-fr_FR.mo (added)
-
languages/ag-custom-admin-fr_FR.po (added)
-
languages/ag-custom-admin-hr.mo (added)
-
languages/ag-custom-admin-hr_HR.po (added)
-
licence.txt (copied) (copied from ag-custom-admin/trunk/licence.txt)
-
plugin.php (copied) (copied from ag-custom-admin/trunk/plugin.php) (5 diffs)
-
readme.txt (copied) (copied from ag-custom-admin/trunk/readme.txt) (3 diffs)
-
require (added)
-
require/dynamic.php (added)
-
script (added)
-
script/ag_script.js (added)
-
script/agca_farbtastic.js (added)
-
script/agca_tmpl.js (added)
-
script/farbtastic.js (added)
-
script/xd.js (added)
-
style (added)
-
style/admin.min.css (added)
-
style/ag_style.css (added)
-
style/ag_style_simple.css (added)
-
style/agca_farbtastic.css (added)
-
style/farbtastic.css (added)
-
style/login.min.css (added)
-
style/marker.png (added)
-
style/mask.png (added)
-
style/wheel.png (added)
-
tests (added)
-
tests/_bootstrap.php (added)
-
tests/_data (added)
-
tests/_data/dump.sql (added)
-
tests/_output (added)
-
tests/_output/.gitignore (added)
-
tests/_support (added)
-
tests/_support/AcceptanceTester.php (added)
-
tests/_support/FunctionalTester.php (added)
-
tests/_support/Helper (added)
-
tests/_support/Helper/Acceptance.php (added)
-
tests/_support/Helper/Functional.php (added)
-
tests/_support/Helper/Unit.php (added)
-
tests/_support/Page (added)
-
tests/_support/Page/AGCAPage.php (added)
-
tests/_support/Page/GeneralPage.php (added)
-
tests/_support/Page/WPDashboardPage.php (added)
-
tests/_support/UnitTester.php (added)
-
tests/_support/_generated (added)
-
tests/_support/_generated/AcceptanceTesterActions.php (added)
-
tests/_support/_generated/FunctionalTesterActions.php (added)
-
tests/_support/_generated/UnitTesterActions.php (added)
-
tests/acceptance (added)
-
tests/acceptance.suite.yml (added)
-
tests/acceptance/AGCAInstalledCept.php (added)
-
tests/acceptance/GeneralSettingsCest.php (added)
-
tests/acceptance/_bootstrap.php (added)
-
tests/functional (added)
-
tests/functional.suite.yml (added)
-
tests/functional/_bootstrap.php (added)
-
tests/index.php (added)
-
tests/unit (added)
-
tests/unit.suite.yml (added)
-
tests/unit/_bootstrap.php (added)
-
uninstall.php (copied) (copied from ag-custom-admin/trunk/uninstall.php)
Legend:
- Unmodified
- Added
- Removed
-
ag-custom-admin/tags/7.2.3/changelog.txt
r3060991 r3080209 1 1 == Change Log == 2 3 = 7.2.3 = 4 * Fixed bug with Welcome box not dismissing 5 * Fixed bug with Welcome to WordPress showing on login page over logo 2 6 3 7 = 7.2.2 = -
ag-custom-admin/tags/7.2.3/plugin.php
r3060991 r3080209 5 5 Description: CHANGE: admin menu, login page, admin bar, dashboard widgets, custom colors, custom CSS & JS, logo & images 6 6 Author: Cusmin 7 Version: 7.2. 27 Version: 7.2.3 8 8 Text Domain: ag-custom-admin 9 9 Domain Path: /languages … … 29 29 30 30 class AGCA{ 31 private $agca_version = "7.2. 2";31 private $agca_version = "7.2.3"; 32 32 private $colorizer = ""; 33 33 private $agca_debug = false; … … 1641 1641 <?php /*Remove Dashboard widgets*/ ?> 1642 1642 <?php 1643 1643 ?> 1644 jQuery('.welcome-panel-close').click(function(){ 1645 setTimeout(function(){ 1646 jQuery("#welcome-panel").removeAttr('style') 1647 }, 0) 1648 }); 1649 <?php 1644 1650 if(get_option('agca_dashboard_widget_welcome')==true){ 1645 1651 ?>jQuery("#welcome-panel").css("display","none");<?php 1646 1652 }else{ 1647 ?> jQuery("#welcome-panel").css("display","block");<?php1653 ?> jQuery("#welcome-panel:not(.hidden)").css("display","block");<?php 1648 1654 } 1649 1655 if(get_option('agca_dashboard_widget_health_status')==true){ … … 1854 1860 advanced_url = "<?php echo $this->sanitize_html(get_option('agca_login_photo_url')); ?>"; 1855 1861 var $url = "url(" + advanced_url + ")"; 1856 jQuery("#login h1 a").css("background",$url+' no-repeat'); 1857 jQuery("#login h1 a").hide(); 1862 var $a = jQuery("#login h1 a"); 1863 $a.css("background",$url+' no-repeat'); 1864 $a.hide(); 1858 1865 image = jQuery("<img />").attr("src",advanced_url); 1859 1866 jQuery(image).on('load', function() { 1860 1867 var originalWidth = 326; 1861 1868 var widthDiff = this.width - originalWidth; 1862 jQuery("#login h1 a").height(this.height); 1863 jQuery("#login h1 a").width(this.width); 1864 jQuery("#login h1 a").css("background-size",this.width+"px "+this.height+"px"); 1869 $a.height(this.height) 1870 .width(this.width) 1871 .css("background-size",this.width+"px "+this.height+"px") 1872 .css("text-indent", "-9999px") 1873 .css("font-size", 0); 1874 1865 1875 1866 1876 var loginWidth = jQuery('#login').width(); … … 1869 1879 1870 1880 if(loginWidth > photoWidth){ 1871 jQuery("#login h1 a").css('margin','auto');1881 $a.css('margin','auto'); 1872 1882 }else{ 1873 jQuery("#login h1 a").css('margin-left',-(widthDiff/2)+((loginWidth-originalLoginWidth)/2)+"px");1883 $a.css('margin-left',-(widthDiff/2)+((loginWidth-originalLoginWidth)/2)+"px"); 1874 1884 } 1875 1885 1876 jQuery("#login h1 a").show();1886 $a.show(); 1877 1887 }); 1878 1888 <?php } ?> -
ag-custom-admin/tags/7.2.3/readme.txt
r3060991 r3080209 2 2 Contributors: cusmin 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=agca@cusmin.com&amount=10&item_name=Support+for+AGCA+Development 4 Tags: custom ize dashboard, hide admin bar, customize admin menu, customize login page, hide widgets, admin menu, dashboard, edit admin menu, admin bar, login page, widgets, customize admin4 Tags: custom dashboard, custom menu, custom admin, custom login, white label 5 5 Requires at least: 3.0 6 Tested up to: 6. 4.37 Stable tag: 7.2. 26 Tested up to: 6.5.2 7 Stable tag: 7.2.3 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl.txt … … 160 160 == Change Log == 161 161 162 = 7.2.3 = 163 * Fixed bug with Welcome box not dismissing 164 * Fixed bug with Welcome to WordPress showing on login page over logo 165 166 [SEE ALL LOGS](https://plugins.svn.wordpress.org/ag-custom-admin/trunk/changelog.txt) 167 168 == Upgrade Notice == 169 170 = 7.2.3 = 171 * Bug fixes 172 162 173 = 7.2.2 = 163 174 * Maintenance release … … 168 179 = 7.2 = 169 180 * Fixed issue with the login image 170 171 = 7.1.5 =172 * Improved functionality of the admin menu editor (adding new items)173 * Text improvements174 175 [SEE ALL LOGS](https://plugins.svn.wordpress.org/ag-custom-admin/trunk/changelog.txt)176 177 == Upgrade Notice ==178 179 = 7.2.1 =180 * WordPress compatibility181 182 = 7.2 =183 * Fixed issue with the login image
Note: See TracChangeset
for help on using the changeset viewer.