vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   help combining a product and plugin (https://vborg.vbsupport.ru/showthread.php?t=98926)

harmor19 10-21-2005 09:36 AM

help combining a product and plugin
 
I have made a product and a plugin and I would like to combine them so the person doesn't have to run both files.

Contents of the product
Code:

<?xml version="1.0" encoding="ISO-8859-1"?>

<product productid="custom_links-Andrew Harmor" active="1">
        <title>Custom Links</title>
        <description>Add custom links in a drop down box on the navbar</description>
        <version>1.0.0</version>
        <codes>
                <code version="1.0.0">
                        <installcode><![CDATA[
$db->query_write("CREATE TABLE `" . TABLE_PREFIX . "custom_links` (
  `linkid` mediumint(10) unsigned NOT NULL auto_increment,
  `url` varchar(120) NOT NULL default '',
  `name` varchar(20) NOT NULL default '',
  PRIMARY KEY  (`linkid`)
);");
$db->show_errors();]]></installcode>
                        <uninstallcode><![CDATA[$db->hide_errors();
$db->query_write("DROP TABLE `" . TABLE_PREFIX . "custom_links`;");
$db->show_errors();]]></uninstallcode>
                </code>
        </codes>
        <templates>
                <template name="custom_links" templatetype="template" date="1128881080" username="harmor19" version="3.5.0"><![CDATA[$custom_links
]]></template>
</templates>
</product>

Contents of the plugin
Code:

<?xml version="1.0" encoding="ISO-8859-1"?>
<plugins>
        <plugin active="1">
                <title>Custom Links</title>
                <hookname>global_start</hookname>
                <phpcode><![CDATA[ //edited so no one will steal it]]></phpcode>
        </plugin>
</plugins>


Alan @ CIT 10-21-2005 09:50 AM

In the Plugin Manager in hte AdminCP, edit the plugin and look for the "Product" dropdown - click on it, and select your product.

Then export the product again, and the plugin will be included. The same applies for templates, phrases, settings, etc.

harmor19 10-21-2005 09:59 AM

Thanks a lot

All I need to do now is code the admin file and I'll release my hack.
Hopefully no one coded it already.


All times are GMT. The time now is 12:57 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00944 seconds
  • Memory Usage 1,714KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete