<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Adding menu tab]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=104</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=104&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Adding menu tab.]]></description>
		<lastBuildDate>Fri, 23 Nov 2018 06:45:57 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33374#p33374</link>
			<description><![CDATA[<p>i am trying to create menu tab but not working above followed tutorial...</p><p>any guidance</p>]]></description>
			<author><![CDATA[null@example.com (emiangel839)]]></author>
			<pubDate>Fri, 23 Nov 2018 06:45:57 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33374#p33374</guid>
		</item>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24677#p24677</link>
			<description><![CDATA[<p><a href="https://frontaccounting.com/punbb/viewtopic.php?id=5169">This thread</a> has the downloadable tutorial.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Mon, 09 Nov 2015 17:48:27 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24677#p24677</guid>
		</item>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24675#p24675</link>
			<description><![CDATA[<p>Isn&#039;t this exactly what was described in post #3 of this thread?</p><p>Joe&#039;s reservations in #4 would certainly still apply.</p>]]></description>
			<author><![CDATA[null@example.com (tm)]]></author>
			<pubDate>Mon, 09 Nov 2015 07:38:31 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24675#p24675</guid>
		</item>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24674#p24674</link>
			<description><![CDATA[<p>This is a tutorial. it must be wikied</p>]]></description>
			<author><![CDATA[null@example.com (kvvaradha)]]></author>
			<pubDate>Mon, 09 Nov 2015 06:26:03 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24674#p24674</guid>
		</item>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24671#p24671</link>
			<description><![CDATA[<p>The Following steps help you to create a new menu item. Goto frontaccounting main directory(Root Directory). Open you frontaccounting.php . It is giving access to every class. So just find the line</p><div class="codebox"><pre><code>include_once($path_to_root . &#039;/applications/customers.php&#039;);</code></pre></div><p>and after the line add your menu item.</p><p>Here I am adding a menu item of HRM.</p><div class="codebox"><pre><code>include_once($path_to_root . &#039;/applications/hrm.php&#039;);</code></pre></div><p>and create a object for hrm class.</p><p>Find the following line<br /></p><div class="codebox"><pre><code>$this-&gt;add_application(new customers_app());</code></pre></div><p>and add the following line of code after the line above.</p><div class="codebox"><pre><code>$this-&gt;add_application(new hrm_app());</code></pre></div><p>Note: If you change the order that will reflect on your menu order. So place your inclusion function based on your needs.<br />Then open your <strong>applications</strong> directory , and create a new php file namely “hrm.php”. And add your hrm class . Just copy any of the class file and make some changes based on your needs.</p><div class="codebox"><pre><code>&lt;?php

class hrm_app extends application 
{
function hrm_app() 
{
$this-&gt;application(&quot;hrm&quot;, _($this-&gt;help_context = &quot;&amp;HRM and Payroll&quot;));

// Here you can add your custom functions and files here. 
}

} ?&gt;</code></pre></div><p>Finally login your frontaccounting, to see your new menu item “HRM”.</p>]]></description>
			<author><![CDATA[null@example.com (ziner80@yahoo.com)]]></author>
			<pubDate>Mon, 09 Nov 2015 04:55:13 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24671#p24671</guid>
		</item>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=2518#p2518</link>
			<description><![CDATA[<p>Take a look at existing modules.</p><p>It is very simple, the add module (FA code) puts the hooks in to add a link to your page and when it is clicked your page is called...</p><p>Also the simpler modules can help figure out fa function calls (db_query, etc)</p><p>tom</p>]]></description>
			<author><![CDATA[null@example.com (tom)]]></author>
			<pubDate>Wed, 13 May 2009 03:08:36 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=2518#p2518</guid>
		</item>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=2512#p2512</link>
			<description><![CDATA[<p>I am interested in using front accounting but I would need to create 2 custom modules to handle my needs or possibly customize the sales order module and create the second module.</p><p>If anyone can help point me in the direction to look at documentation to creating a new module I would appreciate it.&nbsp; I have a basic knowledge of PHP and I could recode/modify code to fit my needs.&nbsp; I could also create code with a guideline to follow, but I have no idea where to start.&nbsp; Thanks for the help.</p><br /><p>Thanks</p><p>Joel</p><br /><br /><p>P.S.&nbsp; If someone is interested in coding for my needs I would be willing to consider it.&nbsp; &nbsp;I am NOT going to pay $1000 for a custom module, though I know it is what many people would ask or even more.&nbsp; If I could afford that I would not be looking at open source software.</p>]]></description>
			<author><![CDATA[null@example.com (pepeusmc)]]></author>
			<pubDate>Tue, 12 May 2009 04:44:34 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=2512#p2512</guid>
		</item>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=2208#p2208</link>
			<description><![CDATA[<p>There is no detailed instruction how to write modules. The best way is to download some modules from our download section and learn by example.<br />Janusz</p>]]></description>
			<author><![CDATA[null@example.com (itronics)]]></author>
			<pubDate>Tue, 07 Apr 2009 07:41:05 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=2208#p2208</guid>
		</item>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=2203#p2203</link>
			<description><![CDATA[<p>hi there joe, how do we write the module?</p>]]></description>
			<author><![CDATA[null@example.com (alazar)]]></author>
			<pubDate>Mon, 06 Apr 2009 19:21:21 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=2203#p2203</guid>
		</item>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=1539#p1539</link>
			<description><![CDATA[<p>Hello all,<br />I just want to say, that we do not recommend this approach. You have to replace everything you have changed when the next release is shipping.<br />It is much better to use one of the existing ones, and create this as a module. A module is just a way of extending the program in an easy way. And it can be installed from inside FrontAccounting.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Thu, 18 Dec 2008 15:51:40 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=1539#p1539</guid>
		</item>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=1512#p1512</link>
			<description><![CDATA[<p>I know this posting is old, but if anyone else wants to do this ie. add a panel, here&#039;s how (NOTE: ONLY for people familiar with PHP coding):</p><p>1) Copy an app file something like what you want from an /applications/ file, and save it there. Give it a name in $this-&gt;application and update the foreach loop around line 31 to include any custom installed modules you want in this &#039;tab&#039; ie. app.<br />2) config.php - around line 158 add your new app like the others<br />3) frontaccounting.php - at top of file, include_once your new app file.<br />4) frontaccounting.php - around line 67 - same thing - $this-&gt;addapplication etc.</p><p>Now you should see a new panel in the location you chose in config.php.</p><p>Your next step will be to actually write PHP files that do stuff in your new tab.<br />You&#039;ll want to create a new directory to hold your new tab functions.<br />Create a new directory under the root with the name of your new app. You&#039;ll want includes, inquiries, manage and view subdirectories probably, depending on what you want to do. See the other directories eg. manufacturing for hints on what you need to do next.</p>]]></description>
			<author><![CDATA[null@example.com (p2409)]]></author>
			<pubDate>Wed, 17 Dec 2008 09:43:12 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=1512#p1512</guid>
		</item>
		<item>
			<title><![CDATA[Re: Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=299#p299</link>
			<description><![CDATA[<p>Why not install the module under the Dimension tab. A dimension can be whatever you define it to be like project, cost centre, inventory, department, section etc.<br />If you like some extended operations you could create your project module under the Dimension tab and it will show up down, right.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Mon, 14 Jan 2008 22:45:27 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=299#p299</guid>
		</item>
		<item>
			<title><![CDATA[Adding menu tab]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=298#p298</link>
			<description><![CDATA[<p>I am trying to create some new modules for FrontAccounting. Is there is a simple (or not so simple) way to add a menu tab at the top so that I can install modules inside it?</p><p>For instance, to the left of the Setup menu item at top, adding new tab called &#039;Projects&#039; and then creating modules via&nbsp; Install/Update Modules.</p><p>Any help would be appreciated. Don&#039;t be afraid to talk geek, I will understand.</p><p>Thanks!</p>]]></description>
			<author><![CDATA[null@example.com (andycapp)]]></author>
			<pubDate>Mon, 14 Jan 2008 20:28:02 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=298#p298</guid>
		</item>
	</channel>
</rss>
