<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Can we use the set_icon function in db_pager_view.inc as well]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=10416</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=10416&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Can we use the set_icon function in db_pager_view.inc as well.]]></description>
		<lastBuildDate>Sun, 19 Nov 2023 09:30:14 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Can we use the set_icon function in db_pager_view.inc as well]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42723#p42723</link>
			<description><![CDATA[<p>from db_pager_view.inc file, we have a function <strong> navi_button</strong> which actually passes the img tag to get icons like this. </p><div class="codebox"><pre><code>function navi_button($name, $value, $enabled=true, $icon = false) {
    global $path_to_root;
      return &quot;&lt;button &quot;. ($enabled ? &#039;&#039;:&#039;disabled&#039;)
          .&quot; class=\&quot;navibutton \&quot; type=\&quot;submit\&quot;&quot;
        .&quot; name=\&quot;$name\&quot;  id=\&quot;$name\&quot; value=\&quot;$value\&quot;&gt;&quot;
          .($icon ? &quot;&lt;img src=&#039;$path_to_root/themes/&quot;.user_theme().&quot;/images/&quot;.$icon.&quot;&#039;&gt;&quot;:&#039;&#039;)
        .&quot;&lt;span&gt;$value&lt;/span&gt;&lt;/button&gt;\n&quot;;
}</code></pre></div><p>Change it to like this. </p><div class="codebox"><pre><code>function navi_button($name, $value, $enabled=true, $icon = false) {
    global $path_to_root;
      return &quot;&lt;button &quot;. ($enabled ? &#039;&#039;:&#039;disabled&#039;)
          .&quot; class=\&quot;navibutton \&quot; type=\&quot;submit\&quot;&quot;
        .&quot; name=\&quot;$name\&quot;  id=\&quot;$name\&quot; value=\&quot;$value\&quot;&gt;&quot;
          .($icon ? set_icon($icon):&#039;&#039;)
        .&quot;&lt;span&gt;$value&lt;/span&gt;&lt;/button&gt;\n&quot;;
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (kvvaradha)]]></author>
			<pubDate>Sun, 19 Nov 2023 09:30:14 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42723#p42723</guid>
		</item>
	</channel>
</rss>
