LINUX, FOSS AND LIBRARY TECHNOLOGY ENTHUSIAST

Saturday, February 29, 2020

Add Custom Modules in Koha

4 comments
I was so curious and thinking about adding custom modules/menus in the koha's staff interface, having my favorite menus in the staff interface makes me very happy and comfortable, thereby I can access all those web apps/links from a single point itself. Here I'm gonna show you where do you have to make modifications in the code.

Step: 1
Go to the intranet-main.tt file

sudo gedit /usr/share/koha/intranet/htdocs/intranet-tmpl/prog/en/modules/intranet-main.tt

Add your favorite web apps/modules links, Here I have added

  1. phpMyAdmin
  2. In Out Management
  3. Course Reserves
  4. ILL Request

Step: 2
Create your module/menu links

<li>
<a class="icon_general icon_lists" href="http://opac-demo.ilibtechnologies.in/inout/login.php"><i class="fa fa-ticket"></i>In Out Management System</a>
</li>

<li>
<a class="icon_general icon_lists" href="http://127.0.0.1/phpmyadmin"><i class="fa fa-database"></i>phpMyAdmin</a>
</li>


save changes

See my client's Koha staff interface with custom modules/menus


Add your favourite Modules :), Thank You..

4 comments: