|
<?php
$module_config = array(
'name' => 'Money Intergration Suite',
'version' => '0.1.4',
'url' => "http://www.drm-hacks.comt/",
'author' => 'Doe Ray Me',
'code_include_file' => array($phpbb_root_path . 'includes/functions_mis.php',$phpbb_root_path . 'mods/mods_base/installed_hacks/mis.php'),
'data_retrieval' => array(
'viewprofile' => array(
'interests' => array(
'method_of_use' => 'function',
'function' => 'mis_view_profile',
'arguments' => array(
'%s'
)
)
),
'viewtopic' => array(
'method_of_use' => 'function',
'function' => 'mis_view_topic',
'arguments' => array(
'%s'
)
),
'add_br' => true
),
'load_on' => 'ALL',
'lang_file' => 'lang_mis',
'lang_search' => 2
);
?>
|