Changeset 3315545
- Timestamp:
- 06/21/2025 05:34:32 AM (9 months ago)
- Location:
- alertwise/trunk
- Files:
-
- 5 edited
-
app/Admin.php (modified) (1 diff)
-
app/Alertwise.php (modified) (1 diff)
-
app/Utils/AdminNavMenuItems.php (modified) (1 diff)
-
assets/css/alertwise.css (modified) (1 diff)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
alertwise/trunk/app/Admin.php
r3315384 r3315545 3 3 4 4 use Alertwise\Utils\ArrayHelper; 5 // use Alertwise\Utils\Helpers;6 5 use Alertwise\Utils\Options; 7 use Alertwise\Includes\ Handlers\SettingsHandler;6 use Alertwise\Includes\handlers\SettingsHandler; 8 7 9 8 // Exit if accessed directly. -
alertwise/trunk/app/Alertwise.php
r3315384 r3315545 43 43 add_action('init', array($this, 'init_core_classes'), 0); 44 44 register_activation_hook(ALERTWISE_FILE, array('\Alertwise\Installer', 'plugin_install')); 45 register_uninstall_hook(ALERTWISE_FILE, array('\Alertwise\Uninstaller', 'plugin_uninstall'));46 45 } 47 46 -
alertwise/trunk/app/Utils/AdminNavMenuItems.php
r3315384 r3315545 94 94 'id' => 'about-us', 95 95 'label' => esc_html__('About Us', 'alertwise'), 96 'url' => 'about-us ',96 'url' => 'about-us.php', 97 97 ); 98 98 } -
alertwise/trunk/assets/css/alertwise.css
r3315384 r3315545 204 204 background: none; 205 205 } 206 207 .alertwise-about-container { 208 max-width: 900px; 209 margin: 32px auto; 210 background: #fff; 211 padding: 10px 32px; 212 } 213 214 .alertwise-about-container h2 { 215 font-size: 2rem; 216 color: #2271b1; 217 margin-bottom: 18px; 218 } 219 220 .alertwise-about-container h3 { 221 color: #2271b1; 222 margin-top: 32px; 223 } 224 225 .alertwise-about-container p, 226 .alertwise-about-container li, 227 .alertwise-about-container ol { 228 font-size: 1.1rem; 229 color: #333; 230 } 231 232 .alertwise-about-container table { 233 border-collapse: collapse; 234 width: 100%; 235 margin-bottom: 24px; 236 font-size: 1rem; 237 background: #fff; 238 } 239 240 .alertwise-about-container th, 241 .alertwise-about-container td { 242 padding: 6px 12px; 243 border: 1px solid #e5e5e5; 244 text-align: left; 245 } 246 247 .alertwise-about-container th { 248 background: #f0f4f8; 249 } 250 251 .alertwise-about-container td { 252 vertical-align: middle; 253 } 254 255 .alertwise-about-container ul { 256 margin-bottom: 28px; 257 padding-left: 24px; 258 } 259 260 .alertwise-about-container li { 261 margin-bottom: 6px; 262 } 263 264 .alertwise-about-container ol { 265 margin: 16px 0 16px 22px; 266 padding-left: 0; 267 } 268 269 .alertwise-about-container a { 270 color: #2271b1; 271 text-decoration: underline; 272 } 273 274 .alertwise-about-container .aboutwise-logo { 275 width: 180px; 276 opacity: 0.8; 277 margin-top: 36px; 278 display: block; 279 margin-left: auto; 280 margin-right: auto; 281 } 282 283 @media (max-width: 600px) { 284 .alertwise-about-container { 285 padding: 20px 6px; 286 } 287 .alertwise-about-container h2 { 288 font-size: 1.2rem; 289 } 290 .alertwise-about-container h3 { 291 font-size: 1rem; 292 } 293 .alertwise-about-container table, 294 .alertwise-about-container th, 295 .alertwise-about-container td { 296 font-size: 0.95rem; 297 } 298 } -
alertwise/trunk/uninstall.php
r3315384 r3315545 4 4 die; 5 5 } 6 7 delete_option( 'alertwise_settings' ); 8 delete_option( 'alertwise_post_page_settings' );
Note: See TracChangeset
for help on using the changeset viewer.