Quote:
Originally Posted by kh99
To put a menu on the left in the adminCP, look at the files in the includes/xml directory. If you create an xml file starting with "cpnav_" and put it in that directory, you can create your own menu. For the right side, you will need to create your own script. Probably the easiest thing to do would be to look at the existing scripts in the admincp directory and see how they work.
An easier way is to add your options to the existing options page by putting the site in debug mode. When you do that, extra controls will appear that will allow you to add sections and options (Add Option link at the top of each section). When you do that you choose a Varname, and then in your plugin code you can use $vbulleton->options['varname'] to get your value.
|
I put it in debug mode,
Setting Group: Valcavs Auto Copy Threads To Discussion Forum (id: valcav_news_discussion)
Added 2 settings:
Setting: News Thread Forum ID: (id: valcav_news_discussion_news_id)
Default: 69
Positive Integer
&
Setting: News Discussions Thread Forum ID: (id: valcav_news_discussion_discussion_id)
Default: 70
Positive Integer
So now I have to change:
PHP Code:
if (in_array($threadinfo['forumid'], array(69)))
into
PHP Code:
if (in_array($threadinfo['forumid'], array($vbulletin->options['valcav_news_discussion_news_id'])))
&
into
PHP Code:
$dest_id = $vbulletin->options['valcav_news_discussion_discussion_id'];
???
Friendly greetings,
Valcav
(& thanks for your help)