current location: Home > Download > Learning resources > php e-book > Joomla plug-in development

Joomla plug-in development
Classify: Learning materials / php e-book | Release time: 2018-02-05 | visits: 2887234 |
Download: 155 |
Latest Downloads
Horror Beat Phase Maker
Himalayan Children
Zebra AI
Supermarket Manager Simulator
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
24 HoursReading Leaderboard
- 1 Ugreen Uno 2-in-1 Magnetic Wireless Charger Review: It Powers Nearly All Your Apple Gear
- 2 Destiny 2: How To Earn The Champ Title
- 3 What platforms can trade virtual coins?
- 4 What should I use to trade Bitcoin?
- 5 What Does R6 Siege Error Code 0-0x00000003 Mean & How to Fix
- 6 Bitcoin client download APP portal
- 7 NYT Connections Answers And Hints - March 13, 2025 Solution #641
- 8 There May Be Threats on Your Device Loop on PC, Top Fixes Here
- 9 Sesame Open Door App Entrance Sesame Open Door Official Website Entrance Download App
- 10 What is the reason for the Bitcoin plunge? When can I buy the bottom? Where to trade?
- 11 How do I set up a DNS server (BIND) in Linux?
- 12 How do I configure a load balancer (HAProxy or Nginx) in Linux?
- 13 How do I configure a mail server (Postfix or Sendmail) in Linux?
- 14 How do I back up and restore a Linux system?
- 15 How do I configure a virtual private network (VPN) in Linux using OpenVPN or WireGuard?
Latest Tutorials
-
- Go language practical GraphQL
- 2927 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 4273 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2309 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 3055 2024-03-29
Introduction
Joomla plugins can be used for various purposes. The plug-in adds more expressions to the output page of the website and has an installation function.
Plug-in type
Although there are almost unlimited types of plugins for Joomla. But they have 8 core types. These core types are classified and stored in the /plugins/ directory. They are:
- authentication
- content
- editors
- editors-xtd
- search
- system
- user
- xmlrpc
The Authentication plugin allows you to authenticate against different sources. You can authenticate through Joomla's user database when you log in. However, there are many other methods that are also possible, such as Google's OpenID (Open User Centric Identity), LDAP (Lightweight Directory Access Protocol) and many others. Regardless of the source, with its open API, you can write a verification plug-in to confirm the logged-in identity. For example, you can write a Twitter account verification plugin because they provide an open API.
The Content plug-in is used to change or add some content when displaying article content. For example, the content plug-in can hide the email address of the article, or format the URL address in your own way. The content plugin can also search for specific tags in articles and replace them with other text or HTML. For example, in the plug-in named Load Module, all modules in the banner1 position will be started and the {loadmodule banner1} tag will be replaced with their output content.
Editor The plug-in allows you to add new content editors (commonly used ones are WYSIYWG)
The Editor-XTD (extension) plug-in allows you to add certain function buttons to your editor. For example, there are several buttons under the existing default editor: Image (add image), Pagebreak (insert page break) and Read more (read full text) button.
The Search plugin allows you to search in different components and different articles. For example, the search plug-ins of the article system: Contacts, Weblinks
The System plug-in allows you to use PHP code to perform various actions in various places on your Joomla site.
The User plugin allows you to perform user-specific actions at different times. This includes when logging in, logging out, and when user data is stored. The most typical user plug-in is a bridge connection between different web applications. For example, establish a bridge connection between Joomla and Phpbb.
The XML-RPC plugin allows you to provide an XML-RPC service for your website. When your website provides web services to other applications (perhaps a desktop application), it provides you with the ability to interact remotely. Network services is really a profound topic, and I can't go into too much detail here.
