=======================================================================================================================================
Mod Title: Admin Notepad

Mod Version: 1.1

Mod Author: John Briggs

Mod Description:
This mod will provide a new tool in the administration panel to keep notes in a notepad for administrators only.

Mod Copyright:  2007-2009 John Briggs. All rights reserved.

Mod Compatibility: XMB 1.9.8 Engage SP3

Mod Install Note: Before adding this mod to your forum, you should back up all files related to this mod.

Mod License Note: This mod is released under the GPL v3 License. A copy is provided with this software.

Mod Author Note:
This modification is developed and released for use with XMB 1.9.8 Engage Final SP3.

=======================================================================================================================================
=======
Step 1:
=======
==============================
Go To Admin Panel --> Insert Raw SQL
==============================

Upload provided file named "SQL.txt" & click "Submit Changes" button.

=======================================================================================================================================
=======
Step 2:
=======

=======================
Edit File: include/admin.inc.php
=======================

==========
Find Code:
==========

    &raquo;&nbsp;<a href="tools.php?action=logsdump"><?php echo $lang['textlogsdump']?></a><br />

===============
Add Code Below:
===============

    <!-- Admin Notepad Mod Begin -->
    &raquo;&nbsp;<a href="cp_notepad.php"><?php echo $lang['Admin_Notes']?></a><br />
    <!-- Admini Notepad Mod End -->

=======================================================================================================================================
=======
Step 3:
=======
=======================
Edit File: include/online.inc.php
=======================

==========
Find Code:
==========

    } else if (false !== strpos($url, '/cp.php') || false !== strpos($url, '/cp2.php')

================
Replace Code With:
================

    } else if (false !== strpos($url, '/cp.php') || false !== strpos($url, '/cp2.php') || false !== strpos($url, '/cp_notepad.php')

=======================================================================================================================================
=======
Step 4:
=======
=======================
Edit File: lang/English.lang.php
=======================
============================
Add Code To End Of File Above ?>
============================

// Admin Notepad Mod Begin
$lang['Admin_Notes'] = "Admin Notepad";
$lang['Admin_Notes_Note'] = "<small><strong>Note:</strong> Administrators can keep vital information &amp; notes here for personal records.</small>";
$lang['Admin_Notes_Clear'] = "Clear Notes";
$lang['Admin_Notes_Submit'] = "Submit Notes";
$lang['Admin_Notes_Update'] = "Admin Notepad Updated Successfully!";
$lang['Admin_Notes_Cleared'] = "Admin Notepad Cleared Successfully!";
// Admin Notepad Mod End

=======================================================================================================================================
=======
Step 5:
=======

Upload provided file named "cp_notepad.php" to your forum directory.

=======================================================================================================================================
Enjoy!