Creating a basic plugin

From Sohowiki
(Difference between revisions)
Jump to: navigation, search
Line 20: Line 20:
  
 
==Modify source file==
 
==Modify source file==
Pull up your trusty code editor and open the file ("main_menu-helloworld.php").
+
No pull up the file in your trusty code editor.
  
Do a ctrl+f (find) on "Basic Features Group", which should lead you to a line of code that looks something like this...
+
Do a ctrl+f (find) on "Basic Features Group", and you should get to a line that looks something like...
 
<pre>
 
<pre>
 
<td class="fgroup_title"><? echo lang("Basic Features Group"); ?></td>
 
<td class="fgroup_title"><? echo lang("Basic Features Group"); ?></td>
 
</pre>
 
</pre>
  
#Replace those words with "Hello World"
+
Modify this line so it looks like this:
#Save the file
+
<pre>
 
+
<td class="fgroup_title"><? echo lang("Basic Features Group"); ?> - Hello World</td>
 
+
</pre>
 
+
  
#Windows explorer
+
Now save the file.
  
 
==Step 2: Create an install manifest==
 
==Step 2: Create an install manifest==

Revision as of 16:22, 17 May 2006

Contents

Introduction

This tutorial will walk you through the creation of a basic plugin that adds the text "Hello World" to Pro Edition's Main Menu, next to the "Basic Features Group" header.

Reccommended stuff you'll want for this tutorial

I'll be writing this under the assumption that you've already got the following covered...

  • A website with Soholaunch Pro Edition installed on it that you can screw around with. All feature modules should be enabled.
  • FTP client and FTP access to your test site
  • Some kind of code/text editor to edit php files with (Dreamweaver, UltraEdit, PHP Edit, Emacs, Notepad, etc.)
  • Decent profeciency working with html, css, and php
  • Some level of familiarity with Pro Edition's various folders and files (i.e. sohoadmin)

Create a folder for your plugin

Pop open Windows Explorer (or Mac/Linux equivalent) and create a folder on your local PC called "HELLO_WORLD". All of your plugin's files will go in this folder.

Download the source file you want to modify

Open Your FTP client and log-in to your test site. For this example, we want to modify Pro Edition's main menu, so download this file from your test site...

public_html/sohoadmin/program/main_menu.php

Stick this file in the "HELLO_WORLD" folder you created on your PC, and rename it to something like "main_menu-helloworld.php" (actual filename doesn't really matter, as long as you recognize it as your modified version of main_menu.php).

Modify source file

No pull up the file in your trusty code editor.

Do a ctrl+f (find) on "Basic Features Group", and you should get to a line that looks something like...

<td class="fgroup_title"><? echo lang("Basic Features Group"); ?></td>

Modify this line so it looks like this:

<td class="fgroup_title"><? echo lang("Basic Features Group"); ?> - Hello World</td>

Now save the file.

Step 2: Create an install manifest

Personal tools