blob: 30a1f6d3e751767d9d8c63828afcc1c34ab06bbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?php
/**
* $Id: edit_help_inc.php,v 1.14 2007/06/09 12:18:51 squareing Exp $
* edit_help_inc
*
* @author spider <spider@steelsun.com>
* @version $Revision: 1.14 $
* @package liberty
* @subpackage functions
*/
global $gLibertySystem;
$inEditor = TRUE; // Required by PluginHelp to Determin Executed in an Editor
$dataplugins = array_merge( $gLibertySystem->getPluginsOfType( DATA_PLUGIN ), $gLibertySystem->getPluginsOfType( FILTER_PLUGIN ));
$formatplugins = $gLibertySystem->getPluginsOfType( FORMAT_PLUGIN );
// refine data plugins and add help where available
foreach( $dataplugins as $guid => $plugin ) {
if( isset( $plugin['description'] )) {
$plugin["plugin_guid"] = preg_replace( "/^(data|filter)/", "", $guid );
$plugin["exthelp"] = !empty( $plugin['help_function'] ) && $gLibertySystem->getPluginFunction( $guid, 'help_function' ) ? $plugin['help_function']() : '';
$dataplugins[$guid] = $plugin;
}
}
if( !empty( $formatplugins ) ) {
usort( $formatplugins, 'usort_by_title' );
$gBitSmarty->assign_by_ref( 'formatplugins', $formatplugins );
}
if( !empty( $dataplugins ) ) {
usort( $dataplugins, 'usort_by_title' );
$gBitSmarty->assign_by_ref( 'dataplugins', $dataplugins );
}
?>
|