Joomla implementation of the method of registering users to add new fields, Joomla registered users
The example in this paper describes how Joomla implements the method of adding new fields to registered users. Share to everyone for your reference, as follows:
Joomla's original registration is simple, in order to add the fields you want, such as telephone.
Add this field "Telphone" to the database
Modify libraries\joomla\database\table\user.php
Add a new variable to the Jtableuser class:
var $telphone = null;
Changes to the page
Modify components\com_user\views\register\tmpl\default.php
Add the input field here, with the same name as the field you defined in your database
Copy the Code code as follows:
This direct modification of the source code is not good after all, so it is recommended to change the page code of the component can be changed in your own Templates folder, as far as possible to reduce the source code changes.
Finally do not want to send the message to the user, only through the background administrator audit can make the new registered user to take effect, note the following code components\com_user\controller.php:
Usercontroller::_sendmail ($user, $password);
More about Joomla related content readers can view this site topic: "Symfony Framework Introductory Tutorial", "Yii framework Introduction and common skills Summary", "PHP Excellent Development Framework Summary", "Smarty Template Primer Basic Tutorial", "thinkphp Common Methods Summary", " PHP Primer for object-oriented programming, PHP string Usage Summary, Introduction to PHP+MYSQL database operations, and PHP common database operations Tips Summary
It is hoped that this article is helpful to everyone based on Joomla program design.
http://www.bkjia.com/PHPjc/1123812.html www.bkjia.com true http://www.bkjia.com/PHPjc/1123812.html techarticle Joomla Implementation of the method of registering users to add new fields, Joomla registered users This article describes the Joomla implementation of the registration of users to add new fields method. Share to everyone for your reference, specific as ...