Plugin system

Koha के प्लगइन प्रणाली आप अतिरिक्त उपकरण और है कि अपने पुस्तकालय के लिए विशिष्ट हैं Koha को रिपोर्ट जोड़ने के लिए अनुमति देता है। प्लगइन्स केपीजेड (Koha प्लगइन ज़िप) संकुल अपलोड करके स्थापित कर रहे हैं। एक केपीजेड फ़ाइल सिर्फ एक ज़िप पर्ल फ़ाइलें, टेम्पलेट फ़ाइलें, और किसी भी अन्य फ़ाइलों प्लगइन का काम करने के लिए आवश्यक युक्त फ़ाइल है।

चेतावनी

There is no vetting process by the Koha community for plugins. Each plugin is maintained and tested by its provider and contributors. Use plugins at your own risk.

प्लगइन प्रणाली एक सिस्टम व्यवस्थापक द्वारा चालू करने की जरूरत है।

सेट अप

कोहा प्लगइन प्रणाली स्थापित करने के लिए आप पहली बार अपने को स्थापित करने के लिए कुछ परिवर्तन करना चाहिए।

  • अपने koha-conf.xml फ़ाइल में <enable_plugins>0</enable_plugins> को<enable_plugins>1</enable_plugins> बदलें

  • आपना वेबसर्वर रिस्टार्ट करें

On the Tools page you will see the Tools Plugins and on the Reports page you will see the Reports Plugins.

Installing a plugin repository

In the koha-conf.xml file, there should be a <plugin_repos> tag. This tag is used to tell Koha in which git repositories to search for plugins.

Each individual repository is in a <repo> tag. Inside this tag are the repository's information.

  • <name> is the name of the company or individual whose repository this is.

  • <org_name> is the username of the company or individual on the git service.

  • <service> is the git platform used to host the repository.

Several repositories are available in the default configuration file. You can uncomment one or all.

<plugin_repos>
  <repo>
    <name>ByWater Solutions</name>
    <org_name>bywatersolutions</org_name>
    <service>github</service>
  </repo>
  <repo>
    <name>Theke Solutions</name>
    <org_name>thekesolutions</org_name>
    <service>gitlab</service>
  </repo>
  <repo>
    <name>PTFS Europe</name>
    <org_name>ptfs-europe</org_name>
    <service>github</service>
  </repo>
</plugin_repos>

Installing and using plugins

See the plugins section in the administration chapter of this manual to learn how to install and use plugins in Koha.