This is a discussion on Admin Notes within the New osCommerce Contributions forums, part of the osCommerce 2.2 Forums category; Here is the long awaited admin-warning/reminder: Open admin/includes/header.php FIND: if ($messageStack->size > 0) { ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| ||||
| ||||
| Here is the long awaited admin-warning/reminder: Open admin/includes/header.php FIND: if ($messageStack->size > 0) { ADD ABOVE: // START Admin-Notes Warning $admin_notes_query = tep_db_query("select status, last_update from " . TABLE_ADMIN_NOTES); $admin_notes = tep_db_num_rows($admin_notes_query); while ($admin_notes = tep_db_fetch_array($admin_notes_query)) { $today_time = time(); $notes_time = ($today_time - strtotime($admin_notes['last_update']) ); if ($admin_notes['status'] == 1) { if ($notes_time > 1) { $messageStack->add(WARNING_ADMIN_NOTES_TIME, 'warning'); } } if ($admin_notes['status'] == 2) { $messageStack->add(WARNING_ADMIN_NOTES_IMPORTANT, 'warning'); } } // END Admin-Notes Warning Open admin/includes/languages/english.php FIND: ?> ADD ABOVE: define('WARNING_ADMIN_NOTES_TIME', 'Warning: A notice exceeded its reminder datetime! (click here)'); define('WARNING_ADMIN_NOTES_IMPORTANT', 'Warning: A notice has marked important! (click here)'); Thats it, have fun! More...
__________________ Michael Sasek osCMax Developer osCMax Templates - Hundreds of premium quality templates. New designs every month! xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host. |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Customer Notes (Anmerkungen zu Kunden) | michael_s | New osCommerce Contributions | 0 | 01-20-2008 09:05 AM |
| Customer Notes (Anmerkungen zu Kunden) | michael_s | New osCommerce Contributions | 0 | 01-06-2008 10:00 AM |
| Admin Notes | michael_s | New osCommerce Contributions | 0 | 12-18-2007 10:11 AM |
| Admin Notes | michael_s | New osCommerce Contributions | 0 | 02-27-2007 01:51 PM |
| admin notes - highly recomended contrib | met00 | osCMax v2 Customization/Mods | 2 | 04-02-2006 03:35 AM |