------------------------------------------
Purpose
------------------------------------------

The files and folders in this folder were added in Build 638 for the purpose
of making the process of including common code blocks into various editors easier.

------------------------------------------
To add your own code blocks
------------------------------------------

1. Create the code file and place into the /code/ directory as .txt
2. Open: code_list.txt
3. Hit return and add the name of your file, a pipe (|), and a short description.
4. Each code file must be on its own line. 
5. Save the file and reload the RackForms editor, the code description
   will shown in the editor, and when clicked on, will append
   the code file specified before the comma to the PHP Top Code editor text area.


EXAMPLE

Let's say you want to create a code block that grabs a serial number from a file.

First we could create the code in some editor, then copy and paste that code into 
a .txt file with the name: get_serial.txt

We would be sure to save this file into the /code/ directory.

Now we'd open the code_list.txt file and go to the last line and hit return.
This will create a new line for our code entry, which is important because
each code entry MUST BE ON ITS OWN LINE.

We will now provide the name of the file in the /code/ directory,
add a pipe (|), followed by a short text description.

Thus, we would add:

get_serial.txt|Get Serial Numbers

We would then save the file and when we reload the RackForms editor, our description
will be a link that when clicked on, will add the code from the /code/get_serial.txt
file into the editor.

You can add and remove these code links at any time, and in any order you like, so
long as each entry is on its own line.
