PDA

View Full Version : How do I print a title in widget?


CreedFeed
07-11-2017, 09:40 PM
I have created a basic product that will store some HTML code in a VB Settings variable, and then create a widget that will print out the HTML from that settings variable. The code is below. I'm not understanding how to get the title to print out in the widget. What am I missing?

In the product code below, I created a phrase, setting_q1linkslist_title. That's what I'd like to print as the title...

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

<product productid="q1links" active="1">
<title>QuakeOne Links</title>
<description>A static listing of links</description>
<version>1.0.0</version>
<url>http://quakeone.com</url>
<versioncheckurl />
<dependencies>
</dependencies>
<codes>
</codes>
<templates>
<template name="widget_q1links" templatetype="template" date="1499651043" username="Solecord" version="1.0.0"><![CDATA[
<vb:if condition="($vboptions['q1linkslist'])">
<div class="canvas-widget default-widget custom-html-widget" id="widget_{vb:raw widgetinstanceid}" data-widget-id="{vb:raw widgetid}" data-widget-instance-id="{vb:raw widgetinstanceid}">
{vb:template module_title, widgetConfig={vb:raw widgetConfig}, can_use_sitebuilder={vb:raw user.can_use_sitebuilder}}
<div class="widget-content">
<hr class="widget-header-divider" />
{vb:raw vboptions.q1linkslist}
</div>
</div>
</vb:if>
]]></template>
</templates>
<stylevardfns>
</stylevardfns>
<stylevars>
</stylevars>
<hooks>
</hooks>
<phrases>
<phrasetype name="q1links" fieldname="q1links">
<phrase name="widget_q1links_widgettitle" date="1499651043" username="Solecord" version="1.0.0"><![CDATA[Quake Links]]></phrase>
</phrasetype>
<phrasetype name="vBulletin Settings" fieldname="vbsettings">
<phrase name="setting_q1linkslist_desc" date="1499651043" username="Solecord" version="1.0"><![CDATA[Enter a list of links]]></phrase>
<phrase name="setting_q1linkslist_title" date="1499651043" username="Solecord" version="1.0"><![CDATA[Links List]]></phrase>
<phrase name="settinggroup_q1links" date="1499651043" username="Solecord" version="1.0"><![CDATA[QuakeOne Links]]></phrase>
</phrasetype>
</phrases>
<options>
<settinggroup name="q1links" displayorder="6730">
<setting varname="q1linkslist" displayorder="10">
<datatype>free</datatype>
<optioncode>textarea</optioncode>
<public>1</public>
</setting>
</settinggroup>
</options>
<helptopics>
</helptopics>
<cronentries>
</cronentries>
<faqentries>
</faqentries>
<widgets>
<widget guid="q1links-1468027049.647168640">
<template>widget_q1links</template>
<icon>module-icon-default.png</icon>
<isthirdparty>1</isthirdparty>
<category>General</category>
<cloneable>0</cloneable>
<canbemultiple>0</canbemultiple>
<product>q1links</product>
<definitions>
<definition>
<name>title</name>
<field>Text</field>
<defaultvalue>phrase:widget_q1links_widgettitle</defaultvalue>
<isusereditable>1</isusereditable>
<isrequired>0</isrequired>
<displayorder>1</displayorder>
<validationtype>force_datatype</validationtype>
<product>q1links</product>
</definition>
</definitions>
</widget>
</widgets>
<pagetemplates>
</pagetemplates>
<pages>
</pages>
<channels>
</channels>
<routes>
</routes>
</product>

noypiscripter
07-12-2017, 05:48 AM
If you want to display the title "Link List" which is the value of the "setting_q1linkslist_title" phrase, then use this code:

{vb:phrase setting_q1linkslist_title}

or

{vb:rawphrase setting_q1linkslist_title}

That setting is intended to be used in AdminCP setting page for your product but if you also want to display it in the module itself, then you can do so using the above code.