<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — Can we use the set_icon function in db_pager_view.inc as well]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=10416&amp;type=atom" />
	<updated>2023-11-19T09:30:14Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=10416</id>
		<entry>
			<title type="html"><![CDATA[Can we use the set_icon function in db_pager_view.inc as well]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=42723#p42723" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[kvvaradha]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19348</uri>
			</author>
			<updated>2023-11-19T09:30:14Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=42723#p42723</id>
		</entry>
</feed>
