Plugin install manifest

From Sohowiki
(Difference between revisions)
Jump to: navigation, search
(Custom setup script)
(Adding a button to the main menu)
 
(20 intermediate revisions by 4 users not shown)
Line 18: Line 18:
 
$plugin_description = "Adds '- Hello World!' next to the 'Basic Features Group' on the main menu.";
 
$plugin_description = "Adds '- Hello World!' next to the 'Basic Features Group' on the main menu.";
 
</pre>
 
</pre>
 
==Optional instructions==
 
 
===Custom icon image===
 
If you'd like your plugin to have it's own icon displayed next to it's name in the Plugin Manager (instead of the default puzzle piece graphic), include the image file in your plugin folder, and add a line like this to your install_manifest.php...
 
$plugin_icon = "my_plugin_icon.gif"
 
 
===Create db tables on install===
 
The idea here is to include a file in your plugin folder that creates the database table(s) your plugin uses. This file will be included/processed when your plugin is installed.
 
 
Add a line like this to your install_manifest.php...
 
$file_that_creates_plugin_dbtables = "install-create_dbtables.php";
 
 
===Drop db tables on uninstall===
 
If your plugin creates any database tables list them here so that Pro Edition knows to drop them during the un-installation process.
 
 
Example usage in install_manifest.php...
 
$drop_tables[] = "myplugin_userdata";
 
$drop_tables[] = "myplugin_prefs";
 
$drop_tables[] = "myplugin_whatever";
 
 
===Custom setup script===
 
Allows you to halt the installation of your plugin, run a script, then resume the install process.
 
 
Example usage in install_manifest.php...
 
$plugin_install_form = "install_form.inc.php";
 
 
Just make sure to redirect back to the plugin manager when your script is done doing what it needs to do (note the todo= and plugin= variables in the example below).
 
 
Example redirect from custom setup form back to plugin manager...
 
<pre>
 
# Normal path from your setup script back to plugin manager
 
$redirect_path = "../../program/webmaster/plugin_manager/plugin_manager.php?";
 
 
# This is key (replace hello_world_advanced) with your plugin folder name
 
$redirect_path .= "todo=finish_install&plugin=hello_world_advanced";
 
 
# Go now
 
header("location: ".$redirect_path); exit;</pre>
 
 
====Complete example setup script====
 
<form method="post" action="<? echo $_SERVER['PHP_SELF']; ?>">
 
<input type="hidden" name="todo" value="write_vital_info"/>
 
User-defined data:
 
<input type="text" name="vital_info" value="<? echo $_POST['vital_info']; ?>"/>
 
<input type="submit" name="submit" value="Next &gt;&gt;"/>
 
</form>
 
  
 
==Tell Pro Edition how to plug-in your plugin==
 
==Tell Pro Edition how to plug-in your plugin==
Line 93: Line 46:
 
?>
 
?>
 
</pre>
 
</pre>
 +
 +
 +
==Special Hooks==
 +
Special hooks allow you to perform common tasks (like adding a button to the main menu) without having to go the long way and replacing the source code via a normal hook_attach, hook_overwrite, or hook_replace.
 +
 +
Typically, special hooks require a specific set of data being set into array values and then passed to the hook_special() function.
 +
 +
===Adding a button to the main menu===
 +
 +
<pre># SPECIAL HOOK: Main menu button
 +
$data = array();
 +
$data['enabled_button_image'] = "plugin_icon-supersearch.gif";
 +
$data['disabled_button_image'] = "plugin_icon-supersearch.gif";
 +
$data['enabled_button_link'] = "myadminscreen.php";
 +
$data['button_caption_text'] = "Super Search";
 +
hook_special("main_menu_button", $data);</pre>
 +
 +
==Additional Options==
 +
 +
===$plugin_install_form===
 +
 +
<pre>
 +
$plugin_install_form = "install_form.php";
 +
</pre>
 +
 +
$plugin_install_form lets plugin developers redirect to a form in the middle of the plugin install process, collect user info and do something with it (like write hard-coded data to plugin files), and THEN reprocess install manifest again.  Your script must redirect back to sohoadmin/program/webmaster/plugin_manager/install_plugin.php and pass a get string with the following parameters.
 +
<pre>todo=finish_install&plugin=plugin_folder</pre>
 +
Just change "plugin_folder" to your plugins folder name.
 +
  
 
[[Category:Plugins]]
 
[[Category:Plugins]]

Latest revision as of 16:01, 7 July 2010

Each plugin must include in it's folder a file named install_manifest.php. Pro Edition reads this file to know what to do when it attempts to install your plugin. All plugins must have a valid install_manifest.php in their folder.

Contents

Overview of file contents

There are two types of content in any given install_manifest.php:

  1. Information - Plugin title, author, etc
  2. Instructions - Overwrite this file with my modified version, replace these lines of source code with my custom code, include my custom file at this point in this source file, etc.

Include basic info about your plugin

# PLUGIN INFO
$plugin_folder = "HELLO_WORLD";
$plugin_title = "Hello World";
$plugin_version = "1.0";
$plugin_author = "John Smith";
$plugin_homepage = "http://example.com";

# Description text
$plugin_description = "Adds '- Hello World!' next to the 'Basic Features Group' on the main menu.";

Tell Pro Edition how to plug-in your plugin

This is the part where you tell Pro Edition how and where to plug-in your plugin (heh). So our specific task at the moment is to tell Pro Edition (through our install manifest) to add our "- Hello World" change to the main menu.

Add this line to your install_manifest.php file...

hook_overwrite("sohoadmin/program/main_menu.php", "main_menu-helloworld.php");

The hook_overwrite function tells Pro Edition to use your version of main_menu.php (main_menu-helloworld.php) instead of the regular one.

Completed install manifest

Here's what your completed install_manifest.php file should look like...

<?
# PLUGIN INFO
$plugin_folder = "HELLO_WORLD";
$plugin_title = "Hello World";
$plugin_version = "1.0";
$plugin_author = "John Smith";
$plugin_homepage = "http://example.com";

# Description text
$plugin_description = "Adds '- Hello World!' next to the 'Basic Features Group' on the main menu.";

# Replace main_menu.php with my custom-modified version
hook_overwrite("sohoadmin/program/main_menu.php", "main_menu-helloworld.php");
?>


Special Hooks

Special hooks allow you to perform common tasks (like adding a button to the main menu) without having to go the long way and replacing the source code via a normal hook_attach, hook_overwrite, or hook_replace.

Typically, special hooks require a specific set of data being set into array values and then passed to the hook_special() function.

Adding a button to the main menu

# SPECIAL HOOK: Main menu button
$data = array();
$data['enabled_button_image'] = "plugin_icon-supersearch.gif";
$data['disabled_button_image'] = "plugin_icon-supersearch.gif";
$data['enabled_button_link'] = "myadminscreen.php";
$data['button_caption_text'] = "Super Search";
hook_special("main_menu_button", $data);

Additional Options

$plugin_install_form

$plugin_install_form = "install_form.php";

$plugin_install_form lets plugin developers redirect to a form in the middle of the plugin install process, collect user info and do something with it (like write hard-coded data to plugin files), and THEN reprocess install manifest again. Your script must redirect back to sohoadmin/program/webmaster/plugin_manager/install_plugin.php and pass a get string with the following parameters.

todo=finish_install&plugin=plugin_folder

Just change "plugin_folder" to your plugins folder name.

Personal tools