<div dir="ltr">Hi Holbok,<div><br></div><div>Yes, i agree with you when we r<span style="font-family:arial,sans-serif;font-size:13px">un the bootstrap vtlib script to create entity module. we are missing this following piece of code, which we are using in our import_Module() api of (vtlib/Vtiger/PackageImport.php) file.</span></div>

<div><span style="font-family:arial,sans-serif;font-size:13px"><br></span></div><div><div style><font face="arial, sans-serif">if(!empty($parenttab)) {</font></div><div style><font face="arial, sans-serif"><span style="white-space:pre">     </span>$menuInstance = Vtiger_Menu::getInstance($parenttab);</font></div>

<div style><font face="arial, sans-serif"><span style="white-space:pre">     </span>$menuInstance->addModule($moduleInstance);</font></div><div style><font face="arial, sans-serif">}</font></div></div><div style><font face="arial, sans-serif"><br>

</font></div><div style><font face="arial, sans-serif">Which is used to insert entry to vtiger_parenttabrel, if parent tag has a value in manifest.xml.</font></div><div style><font face="arial, sans-serif"><br></font></div>

<div style><font face="arial, sans-serif">I have raised a <a href="http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8131">trac </a>for same. where we will be updating our vtlib script. Please leave your observation here.</font></div>

</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Jul 5, 2014 at 6:04 PM, Holbok István <span dir="ltr"><<a href="mailto:holbok@gmail.com" target="_blank">holbok@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
  

    
  
  <div text="#000000" bgcolor="#FFFFFF">
    Dear Vtiger Team,<br>
    <br>
    Running the bootstrap vtlib script to create entity module I have
    found an other issue:<br>
    <br>
    When we export the created module to crate install package, the <b><parent></parent></b>
    field in the <b>manifest.xml </b>will be empty.<br>
    <br>
    The bootstrap vtlib script of course contains the parent name.<br>
    <br>
            $moduleInstance = new Vtiger_Module();<br>
            $moduleInstance->name = $MODULENAME;<br>
            $moduleInstance->parent= '<b>Tools</b>';<br>
            $moduleInstance->save();<br>
    <br>
    The parent name is stored into the <b>vtiger_tab</b> table <b>parent</b>
    field as 'Tools' in the record with a new ID. This is OK.<br>
    <br>
    <b>But no one record</b> was created (during the module creating
    process) in the table <b>vtiger_parenttabrel </b>. Even so the
    Custom module was listed under the Parent Tab (Tools), it looks like
    by getting data from an other place.<br>
    <br>
    The Class Vtiger_PackageExport responsible for the package creation.
    It is located at vtlib/Vtiger/PackageExport.php file.<br>
    <br>
    Looking at the function export_Module()  (line 231) we can see that
    the parent name is searching from the table vtiger_parenttabrel ,
    where no records about it.<br>
    <pre style="font-family:monospace;margin:0px;color:rgb(51,51,51);font-size:13.333333969116211px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:21.666667938232422px;text-align:start;text-indent:0px;text-transform:none;word-spacing:0px;background-color:rgb(255,255,255)">

<code style="font-family:monospace"><span style="display:block;background:rgb(246,246,244)">    <span style="color:rgb(146,146,146)">/**
</span></span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#228" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">228: </a><span style="color:rgb(146,146,146)">     * Export Module Handler
</span></span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#229" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">229: </a><span style="color:rgb(146,146,146)">     * @access private
</span></span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#230" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">230: </a><span style="color:rgb(146,146,146)">     */</span>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#231" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">231: </a>    <span style="color:rgb(231,24,24);font-weight:bold">function</span> <a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#_export_Module" style="color:rgb(51,51,51);padding:3px 1px;text-decoration:none" target="_blank">export_Module</a>(<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>) {
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#232" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">232: </a>        <span style="color:rgb(231,24,24);font-weight:bold">global</span> <span style="color:rgb(213,148,1);font-weight:bold">$adb</span>;
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#233" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">233: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#234" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">234: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$moduleid</span> = <span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>->id;
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#235" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">235: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#236" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">236: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$sqlresult</span> = <span style="color:rgb(213,148,1);font-weight:bold">$adb</span>->pquery(<span style="color:rgb(0,128,0)">"SELECT * FROM vtiger_parenttabrel WHERE tabid = ?"</span>, <span style="color:rgb(231,24,24);font-weight:bold">array</span>(<span style="color:rgb(213,148,1);font-weight:bold">$moduleid</span>));
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#237" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">237: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$parenttabid</span> = <span style="color:rgb(213,148,1);font-weight:bold">$adb</span>->query_result(<span style="color:rgb(213,148,1);font-weight:bold">$sqlresult</span>, <span style="color:rgb(205,6,115)">0</span>, <span style="color:rgb(0,128,0)">'parenttabid'</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#238" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">238: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$menu</span> = Vtiger_Menu::getInstance(<span style="color:rgb(213,148,1);font-weight:bold">$parenttabid</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#239" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">239: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$parent_name</span> = <span style="color:rgb(213,148,1);font-weight:bold">$menu</span>->label;
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#240" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">240: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#241" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">241: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$sqlresult</span> = <span style="color:rgb(213,148,1);font-weight:bold">$adb</span>->pquery(<span style="color:rgb(0,128,0)">"SELECT * FROM vtiger_tab WHERE tabid = ?"</span>, <span style="color:rgb(231,24,24);font-weight:bold">array</span>(<span style="color:rgb(213,148,1);font-weight:bold">$moduleid</span>));
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#242" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">242: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$tabresultrow</span> = <span style="color:rgb(213,148,1);font-weight:bold">$adb</span>->fetch_array(<span style="color:rgb(213,148,1);font-weight:bold">$sqlresult</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#243" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">243: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#244" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">244: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$tabname</span> = <span style="color:rgb(213,148,1);font-weight:bold">$tabresultrow</span>[<span style="color:rgb(0,128,0)">'name'</span>];
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#245" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">245: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$tablabel</span>= <span style="color:rgb(213,148,1);font-weight:bold">$tabresultrow</span>[<span style="color:rgb(0,128,0)">'tablabel'</span>];
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#246" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">246: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$tabversion</span> = <span style="color:rgb(231,24,24);font-weight:bold">isset</span>(<span style="color:rgb(213,148,1);font-weight:bold">$tabresultrow</span>[<span style="color:rgb(0,128,0)">'version'</span>])? <span style="color:rgb(213,148,1);font-weight:bold">$tabresultrow</span>[<span style="color:rgb(0,128,0)">'version'</span>] : <span style="color:rgb(231,24,24);font-weight:bold">false</span>;
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#247" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">247: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#248" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">248: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->openNode(<span style="color:rgb(0,128,0)">'module'</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#249" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">249: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->outputNode(<span style="font-weight:bold">date</span>(<span style="color:rgb(0,128,0)">'Y-m-d H:i:s'</span>),<span style="color:rgb(0,128,0)">'exporttime'</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#250" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">250: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->outputNode(<span style="color:rgb(213,148,1);font-weight:bold">$tabname</span>, <span style="color:rgb(0,128,0)">'name'</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#251" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">251: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->outputNode(<span style="color:rgb(213,148,1);font-weight:bold">$tablabel</span>, <span style="color:rgb(0,128,0)">'label'</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#252" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">252: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->outputNode(<span style="color:rgb(213,148,1);font-weight:bold">$parent_name</span>, <span style="color:rgb(0,128,0)">'parent'</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#253" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">253: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#254" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">254: </a>        <span style="color:rgb(231,24,24);font-weight:bold">if</span>(!<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>->isentitytype) {
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#255" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">255: </a>            <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->outputNode(<span style="color:rgb(0,128,0)">'extension'</span>, <span style="color:rgb(0,128,0)">'type'</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#256" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">256: </a>        }
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#257" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">257: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#258" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">258: </a>        <span style="color:rgb(231,24,24);font-weight:bold">if</span>(<span style="color:rgb(213,148,1);font-weight:bold">$tabversion</span>) {
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#259" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">259: </a>            <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->outputNode(<span style="color:rgb(213,148,1);font-weight:bold">$tabversion</span>, <span style="color:rgb(0,128,0)">'version'</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#260" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">260: </a>        }
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#261" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">261: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#262" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">262: </a>        <span style="color:rgb(146,146,146)">// Export dependency information</span>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#263" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">263: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->export_Dependencies(<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#264" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">264: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#265" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">265: </a>        <span style="color:rgb(146,146,146)">// Export module tables</span>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#266" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">266: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->export_Tables(<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#267" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">267: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#268" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">268: </a>        <span style="color:rgb(146,146,146)">// Export module blocks</span>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#269" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">269: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->export_Blocks(<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#270" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">270: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#271" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">271: </a>        <span style="color:rgb(146,146,146)">// Export module filters</span>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#272" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">272: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->export_CustomViews(<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#273" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">273: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#274" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">274: </a>        <span style="color:rgb(146,146,146)">// Export Sharing Access</span>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#275" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">275: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->export_SharingAccess(<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#276" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">276: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#277" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">277: </a>        <span style="color:rgb(146,146,146)">// Export Events</span>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#278" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">278: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->export_Events(<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#279" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">279: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#280" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">280: </a>        <span style="color:rgb(146,146,146)">// Export Actions</span>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#281" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">281: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->export_Actions(<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#282" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">282: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#283" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">283: </a>        <span style="color:rgb(146,146,146)">// Export Related Lists</span>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#284" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">284: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->export_RelatedLists(<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#285" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">285: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#286" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">286: </a>        <span style="color:rgb(146,146,146)">// Export Custom Links</span>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#287" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">287: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->export_CustomLinks(<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#288" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">288: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#289" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">289: </a>        <span style="color:rgb(146,146,146)">//Export cronTasks</span>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#290" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">290: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->export_CronTasks(<span style="color:rgb(213,148,1);font-weight:bold">$moduleInstance</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#291" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">291: </a>
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#292" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">292: </a>        <span style="color:rgb(213,148,1);font-weight:bold">$this</span>->closeNode(<span style="color:rgb(0,128,0)">'module'</span>);
</span><span style="display:block"><a href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#293" style="color:rgb(192,192,192);padding:3px 1px 3px 2px;text-decoration:none" target="_blank">293: </a>    }</span></code></pre>


    <br>
    <br>
    <br>
    Kindest regards:<br>
    Istvan<span class="HOEnZb"><font color="#888888"><br>
    <br>
    <div>-- <br>
      üdvözlettel:<br>
      <br>
      <b>Holbok István</b><br>
      <br>
      +3670-342-0900<br>
      <b>e-mail:</b> <a href="mailto:holbok@gmail.com" target="_blank">holbok@gmail.com</a><br>
      <b>SkyPe:</b> holboki<br>
      <br>
    </div>
  </font></span></div>

<br>_______________________________________________<br>
<a href="http://www.vtiger.com/" target="_blank">http://www.vtiger.com/</a><br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr">With<br>Best Regards<br>Uma.S<br><div>Vtiger Team</div></div>
</div>