Hook special

From Sohowiki
(Difference between revisions)
Jump to: navigation, search
(page_editor_object)
(page_editor_object)
Line 11: Line 11:
  
 
===page_editor_object===
 
===page_editor_object===
 +
Used to add a draggable icon object for your plugin to the Page Editor.
 +
 +
Note: This only a part of what is involved in adding your plugin to the Page Editor. For more detailed information see [[Plugging-in to the Page Editor]].
 +
 
<pre>$data = array();  
 
<pre>$data = array();  
 
$data['draggable_object_image'] = "eng-icon_scroll.gif";  
 
$data['draggable_object_image'] = "eng-icon_scroll.gif";  
Line 16: Line 20:
 
$data['properties_dialog_id'] = "scrollProps";  
 
$data['properties_dialog_id'] = "scrollProps";  
 
$data['mod_folder'] = $plugin_folder;  
 
$data['mod_folder'] = $plugin_folder;  
$data['properties_dialog_file'] = $plugin_folder.DIRECTORY_SEPARATOR."scroll_props.php";  
+
$data['properties_dialog_file'] = $plugin_folder."/scroll_props.php";  
$data['place_object_js_function'] = $plugin_folder.DIRECTORY_SEPARATOR."scroll_js.php";  
+
$data['place_object_js_function'] = $plugin_folder."/scroll_js.php";
 
hook_special("page_editor_object", $data);</pre>
 
hook_special("page_editor_object", $data);</pre>

Revision as of 16:27, 6 June 2006

Overview

Syntax 
hook_special(target special hook, data array)
Description
Utilizes special hook built-in to make it easier for your plugin to tie into a certain commonly-utilized areas of the product (like adding a button for your plugin to the main menu).

Available special hooks

page_editor_object

Used to add a draggable icon object for your plugin to the Page Editor.

Note: This only a part of what is involved in adding your plugin to the Page Editor. For more detailed information see Plugging-in to the Page Editor.

$data = array(); 
$data['draggable_object_image'] = "eng-icon_scroll.gif"; 
$data['draggable_object_id'] = "scroll_obj"; 
$data['properties_dialog_id'] = "scrollProps"; 
$data['mod_folder'] = $plugin_folder; 
$data['properties_dialog_file'] = $plugin_folder."/scroll_props.php"; 
$data['place_object_js_function'] = $plugin_folder."/scroll_js.php";
hook_special("page_editor_object", $data);
Personal tools