Plugin Reorder
Plugin Description:
I have created a plugin that allows the admin to reorder the plugins so that content is loaded in the order you want.
I also added the ability to create a new plugin.xml file so that if a plugin is removed, it will not break the system. The only caveat is that all plugins are enabled by default.
FIX TO CORRECT ADMIN ISSUES
FROM
register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js', '1.7.1', TRUE);
queue_script('jquery',GSBACK);
register_script('jqueryui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js', '1.8.18', TRUE);
queue_script('jqueryui',GSBACK);
TO
register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js', '1.7.1', FALSE);
queue_script('jquery',GSBACK);
register_script('jqueryui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js', '1.8.18', **FALSE**);
queue_script('jqueryui',GSBACK);
Install Instructions:
Unzip and copy contents to the plugins folder
Archived Versions:
These are old versions of this file. Please use with caution as they are probably out of date and no longer supported. ShowHide