The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
Hello every one,
Actually I tried to make an HTML table, & I succeeded ![]() so I paste the table code at the end of the header, and it shows wonderfull but I want it to be extractable so I can distribute it as a plugin/product alone, hence I created a new template, as I called this template: my_template then I created a plugin, & choosed the hook location to be: parse_template this plugin contains this fragment of code: Code:
eval('$my_template = "' . fetch_template('my_template') . '";'); but still didn't work. So can any one help me by telling me, how to let this template be shown??? |
#2
|
|||
|
|||
![]()
up
up |
#3
|
||||
|
||||
![]() Code:
eval('$my_template .= "' . fetch_template("my_template") . '";'); |
#4
|
|||
|
|||
![]()
Thanx, Seven Skins, but it didn't work, besides I never saw this syntax in any working hack
I never saw the DOT b4 the EQUALE SIGN Code:
...y_template .= "' . fetch_te... |
#5
|
||||
|
||||
![]()
The = operator assigns content. the .= operator appends content. In other words, the $my_template variable already exists and is displaying - so you just add to it. This requires that you use an existing variable that is already in use somewhere.
If you don't want to do it that way, you can try doing this instead: Code:
eval('print_output("' . fetch_template($template_name) . '");'); |
#6
|
||||
|
||||
![]()
Try adding a hook at: global_start or if you just want that table on your forumhome then forumhome_start
With your original code: Code:
eval('$temp = "' . fetch_template('temp') . '";'); |
#7
|
||||
|
||||
![]()
But that still won't output the template for view. They'd have to manually edit a template and throw the $temp variable in there.
|
#8
|
||||
|
||||
![]()
If you just want to spit the template...
PHP Code:
|
#9
|
|||
|
|||
![]()
actually nothing's worked, so I tried to create it again from the scratch, and it works, so I don't know where was my mistake, yet
but finally solved it ![]() thank u all, for helping my |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|