<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body smarttemplateinserted="true" 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; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);"><code style="font-family: monospace;"><span id="227" class="l selected" style="display: block; background: rgb(246, 246, 244);">    <span class="php-comment" style="color: rgb(146, 146, 146);">/**
</span></span><span id="228" class="l" style="display: block;"><a class="l" 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;">228: </a><span class="php-comment" style="color: rgb(146, 146, 146);">     * Export Module Handler
</span></span><span id="229" class="l" style="display: block;"><a class="l" 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;">229: </a><span class="php-comment" style="color: rgb(146, 146, 146);">     * @access private
</span></span><span id="230" class="l" style="display: block;"><a class="l" 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;">230: </a><span class="php-comment" style="color: rgb(146, 146, 146);">     */</span>
</span><span id="231" class="l" style="display: block;"><a class="l" 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;">231: </a>    <span class="php-keyword1" style="color: rgb(231, 24, 24); font-weight: bold;">function</span> <a id="_export_Module" href="http://vtigerdoc.holbok.hu/source-class-Vtiger_PackageExport.html#_export_Module" style="color: rgb(51, 51, 51); padding: 3px 1px; text-decoration: none;">export_Module</a>(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>) {
</span><span id="232" class="l" style="display: block;"><a class="l" 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;">232: </a>        <span class="php-keyword1" style="color: rgb(231, 24, 24); font-weight: bold;">global</span> <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$adb</span>;
</span><span id="233" class="l" style="display: block;"><a class="l" 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;">233: </a>
</span><span id="234" class="l" style="display: block;"><a class="l" 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;">234: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleid</span> = <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>->id;
</span><span id="235" class="l" style="display: block;"><a class="l" 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;">235: </a>
</span><span id="236" class="l" style="display: block;"><a class="l" 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;">236: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$sqlresult</span> = <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$adb</span>->pquery(<span class="php-quote" style="color: rgb(0, 128, 0);">"SELECT * FROM vtiger_parenttabrel WHERE tabid = ?"</span>, <span class="php-keyword1" style="color: rgb(231, 24, 24); font-weight: bold;">array</span>(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleid</span>));
</span><span id="237" class="l" style="display: block;"><a class="l" 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;">237: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$parenttabid</span> = <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$adb</span>->query_result(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$sqlresult</span>, <span class="php-num" style="color: rgb(205, 6, 115);">0</span>, <span class="php-quote" style="color: rgb(0, 128, 0);">'parenttabid'</span>);
</span><span id="238" class="l" style="display: block;"><a class="l" 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;">238: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$menu</span> = Vtiger_Menu::getInstance(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$parenttabid</span>);
</span><span id="239" class="l" style="display: block;"><a class="l" 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;">239: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$parent_name</span> = <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$menu</span>->label;
</span><span id="240" class="l" style="display: block;"><a class="l" 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;">240: </a>
</span><span id="241" class="l" style="display: block;"><a class="l" 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;">241: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$sqlresult</span> = <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$adb</span>->pquery(<span class="php-quote" style="color: rgb(0, 128, 0);">"SELECT * FROM vtiger_tab WHERE tabid = ?"</span>, <span class="php-keyword1" style="color: rgb(231, 24, 24); font-weight: bold;">array</span>(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleid</span>));
</span><span id="242" class="l" style="display: block;"><a class="l" 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;">242: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tabresultrow</span> = <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$adb</span>->fetch_array(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$sqlresult</span>);
</span><span id="243" class="l" style="display: block;"><a class="l" 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;">243: </a>
</span><span id="244" class="l" style="display: block;"><a class="l" 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;">244: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tabname</span> = <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tabresultrow</span>[<span class="php-quote" style="color: rgb(0, 128, 0);">'name'</span>];
</span><span id="245" class="l" style="display: block;"><a class="l" 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;">245: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tablabel</span>= <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tabresultrow</span>[<span class="php-quote" style="color: rgb(0, 128, 0);">'tablabel'</span>];
</span><span id="246" class="l" style="display: block;"><a class="l" 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;">246: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tabversion</span> = <span class="php-keyword1" style="color: rgb(231, 24, 24); font-weight: bold;">isset</span>(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tabresultrow</span>[<span class="php-quote" style="color: rgb(0, 128, 0);">'version'</span>])? <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tabresultrow</span>[<span class="php-quote" style="color: rgb(0, 128, 0);">'version'</span>] : <span class="php-keyword1" style="color: rgb(231, 24, 24); font-weight: bold;">false</span>;
</span><span id="247" class="l" style="display: block;"><a class="l" 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;">247: </a>
</span><span id="248" class="l" style="display: block;"><a class="l" 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;">248: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->openNode(<span class="php-quote" style="color: rgb(0, 128, 0);">'module'</span>);
</span><span id="249" class="l" style="display: block;"><a class="l" 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;">249: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->outputNode(<span class="php-keyword2" style="font-weight: bold;">date</span>(<span class="php-quote" style="color: rgb(0, 128, 0);">'Y-m-d H:i:s'</span>),<span class="php-quote" style="color: rgb(0, 128, 0);">'exporttime'</span>);
</span><span id="250" class="l" style="display: block;"><a class="l" 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;">250: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->outputNode(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tabname</span>, <span class="php-quote" style="color: rgb(0, 128, 0);">'name'</span>);
</span><span id="251" class="l" style="display: block;"><a class="l" 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;">251: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->outputNode(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tablabel</span>, <span class="php-quote" style="color: rgb(0, 128, 0);">'label'</span>);
</span><span id="252" class="l" style="display: block;"><a class="l" 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;">252: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->outputNode(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$parent_name</span>, <span class="php-quote" style="color: rgb(0, 128, 0);">'parent'</span>);
</span><span id="253" class="l" style="display: block;"><a class="l" 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;">253: </a>
</span><span id="254" class="l" style="display: block;"><a class="l" 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;">254: </a>        <span class="php-keyword1" style="color: rgb(231, 24, 24); font-weight: bold;">if</span>(!<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>->isentitytype) {
</span><span id="255" class="l" style="display: block;"><a class="l" 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;">255: </a>            <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->outputNode(<span class="php-quote" style="color: rgb(0, 128, 0);">'extension'</span>, <span class="php-quote" style="color: rgb(0, 128, 0);">'type'</span>);
</span><span id="256" class="l" style="display: block;"><a class="l" 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;">256: </a>        }
</span><span id="257" class="l" style="display: block;"><a class="l" 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;">257: </a>
</span><span id="258" class="l" style="display: block;"><a class="l" 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;">258: </a>        <span class="php-keyword1" style="color: rgb(231, 24, 24); font-weight: bold;">if</span>(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tabversion</span>) {
</span><span id="259" class="l" style="display: block;"><a class="l" 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;">259: </a>            <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->outputNode(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$tabversion</span>, <span class="php-quote" style="color: rgb(0, 128, 0);">'version'</span>);
</span><span id="260" class="l" style="display: block;"><a class="l" 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;">260: </a>        }
</span><span id="261" class="l" style="display: block;"><a class="l" 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;">261: </a>
</span><span id="262" class="l" style="display: block;"><a class="l" 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;">262: </a>        <span class="php-comment" style="color: rgb(146, 146, 146);">// Export dependency information</span>
</span><span id="263" class="l" style="display: block;"><a class="l" 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;">263: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->export_Dependencies(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>);
</span><span id="264" class="l" style="display: block;"><a class="l" 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;">264: </a>
</span><span id="265" class="l" style="display: block;"><a class="l" 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;">265: </a>        <span class="php-comment" style="color: rgb(146, 146, 146);">// Export module tables</span>
</span><span id="266" class="l" style="display: block;"><a class="l" 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;">266: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->export_Tables(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>);
</span><span id="267" class="l" style="display: block;"><a class="l" 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;">267: </a>
</span><span id="268" class="l" style="display: block;"><a class="l" 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;">268: </a>        <span class="php-comment" style="color: rgb(146, 146, 146);">// Export module blocks</span>
</span><span id="269" class="l" style="display: block;"><a class="l" 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;">269: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->export_Blocks(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>);
</span><span id="270" class="l" style="display: block;"><a class="l" 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;">270: </a>
</span><span id="271" class="l" style="display: block;"><a class="l" 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;">271: </a>        <span class="php-comment" style="color: rgb(146, 146, 146);">// Export module filters</span>
</span><span id="272" class="l" style="display: block;"><a class="l" 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;">272: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->export_CustomViews(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>);
</span><span id="273" class="l" style="display: block;"><a class="l" 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;">273: </a>
</span><span id="274" class="l" style="display: block;"><a class="l" 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;">274: </a>        <span class="php-comment" style="color: rgb(146, 146, 146);">// Export Sharing Access</span>
</span><span id="275" class="l" style="display: block;"><a class="l" 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;">275: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->export_SharingAccess(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>);
</span><span id="276" class="l" style="display: block;"><a class="l" 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;">276: </a>
</span><span id="277" class="l" style="display: block;"><a class="l" 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;">277: </a>        <span class="php-comment" style="color: rgb(146, 146, 146);">// Export Events</span>
</span><span id="278" class="l" style="display: block;"><a class="l" 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;">278: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->export_Events(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>);
</span><span id="279" class="l" style="display: block;"><a class="l" 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;">279: </a>
</span><span id="280" class="l" style="display: block;"><a class="l" 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;">280: </a>        <span class="php-comment" style="color: rgb(146, 146, 146);">// Export Actions</span>
</span><span id="281" class="l" style="display: block;"><a class="l" 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;">281: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->export_Actions(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>);
</span><span id="282" class="l" style="display: block;"><a class="l" 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;">282: </a>
</span><span id="283" class="l" style="display: block;"><a class="l" 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;">283: </a>        <span class="php-comment" style="color: rgb(146, 146, 146);">// Export Related Lists</span>
</span><span id="284" class="l" style="display: block;"><a class="l" 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;">284: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->export_RelatedLists(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>);
</span><span id="285" class="l" style="display: block;"><a class="l" 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;">285: </a>
</span><span id="286" class="l" style="display: block;"><a class="l" 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;">286: </a>        <span class="php-comment" style="color: rgb(146, 146, 146);">// Export Custom Links</span>
</span><span id="287" class="l" style="display: block;"><a class="l" 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;">287: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->export_CustomLinks(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>);
</span><span id="288" class="l" style="display: block;"><a class="l" 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;">288: </a>
</span><span id="289" class="l" style="display: block;"><a class="l" 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;">289: </a>        <span class="php-comment" style="color: rgb(146, 146, 146);">//Export cronTasks</span>
</span><span id="290" class="l" style="display: block;"><a class="l" 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;">290: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->export_CronTasks(<span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$moduleInstance</span>);
</span><span id="291" class="l" style="display: block;"><a class="l" 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;">291: </a>
</span><span id="292" class="l" style="display: block;"><a class="l" 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;">292: </a>        <span class="php-var" style="color: rgb(213, 148, 1); font-weight: bold;">$this</span>->closeNode(<span class="php-quote" style="color: rgb(0, 128, 0);">'module'</span>);
</span><span id="293" class="l" style="display: block;"><a class="l" 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;">293: </a>    }</span></code></pre>
    <br>
    <br>
    <br>
    Kindest regards:<br>
    Istvan<br>
    <br>
    <div class="moz-signature">-- <br>
      üdvözlettel:<br>
      <br>
      <b>Holbok István</b><br>
      <br>
      +3670-342-0900<br>
      <b>e-mail:</b> <a class="moz-txt-link-abbreviated" href="mailto:holbok@gmail.com">holbok@gmail.com</a><br>
      <b>SkyPe:</b> holboki<br>
      <br>
    </div>
  </body>
</html>