Bug fixed

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu call_integration_hook('integrate_packages_sort_id', array(&$sort_id));
function shd_packages_sort_id(&$sort_id)
{
global $context;
$sort_id['sdplugin'] = 1;
$context['available_sdplugin'] = array();
}
function PackageBrowse()
{
global $txt, $scripturl, $context, $forum_version, $sourcedir, $smcFunc;
$context['page_title'] .= ' - ' . $txt['browse_packages'];
$context['forum_version'] = $forum_version;
$context['modification_types'] = array('modification', 'avatar', 'language', 'unknown');
call_integration_hook('integrate_modification_types');
function PackageBrowse()
{
global $txt, $scripturl, $context, $forum_version, $sourcedir, $smcFunc;
$context['page_title'] .= ' - ' . $txt['browse_packages'];
$context['forum_version'] = $forum_version;
$type = array('modification', 'avatar', 'language', 'unknown');
$context['modification_types'] = $type;
call_integration_hook('integrate_modification_types');
/**
* Sets up the browse section for plugins.
*
* @since 2.1
*/
function shd_modification_types()
{
global $context, $txt;
$context['modification_types'][] = 'sdplugin';
}
$context['modification_types'] = array('modification', 'avatar', 'language', 'unknown');
$context['modification_types'] = array('modification', 'avatar', 'language', 'unknown', 'sdplugin');
function shd_packages_sort_id(&$sort_id, &$packages)
{
global $context, $packages;
But then missing the information that this plugin is installed and when it was installed, please look at image pluginsystem-4.PNG
$hooks[] = array(
'hook' => 'integrate_package_upload',
'function' => 'shd_package_upload',
'file' => '$sourcedir/sd_source/Subs-SimpleDeskPackages.php',
'perm' => true,
);
$hooks[] = array(
'hook' => 'integrate_modification_types',
'function' => 'shd_modification_types',
'file' => '$sourcedir/sd_source/Subs-SimpleDeskPackages.php',
'perm' => true,
);
$txt['shd_search_rebuilt'] = 'The search index has been rebuilt.';
//@}
//! Package Plugin
//@{
$txt['sdplugin_package'] = 'SDPlugin packages';
//@}
function shd_packages_sort_id(&$sort_id, &$packages)
{
global $context;
function shd_packages_sort_id(&$sort_id, &$packages)
{
global $context, $packages;
function shd_package_download()
{
global $context;
function shd_package_download()
{
global $context, $scripturl, $txt;
function shd_package_upload()
{
global $context;
function shd_package_upload()
{
global $context, $scripturl, $txt;
Page created in 0.024 seconds with 15 queries.