API17

Difference between revisions of "JTableUser"

From Joomla! Documentation

m (→‎User contributed notes: moving preparation)
m (moving preparation)
Line 14: Line 14:
 
|-
 
|-
 
|public  
 
|public  
|[[JTableUser::__construct/11.1|__construct]]
+
|[[API17:JTableUser::__construct|__construct]]
 
|
 
|
 
|-
 
|-
 
|public  
 
|public  
|[[JTableUser::bind/11.1|bind]]
+
|[[API17:JTableUser::bind|bind]]
 
|Method to bind the user, user groups, and any other necessary data.  
 
|Method to bind the user, user groups, and any other necessary data.  
 
|-
 
|-
 
|public  
 
|public  
|[[JTableUser::check/11.1|check]]
+
|[[API17:JTableUser::check|check]]
 
|Validation and filtering.  
 
|Validation and filtering.  
 
|-
 
|-
 
|public  
 
|public  
|[[JTableUser::delete/11.1|delete]]
+
|[[API17:JTableUser::delete|delete]]
 
|Method to delete a user, user groups, and any other necessary data from the database.  
 
|Method to delete a user, user groups, and any other necessary data from the database.  
 
|-
 
|-
 
|public  
 
|public  
|[[JTableUser::load/11.1|load]]
+
|[[API17:JTableUser::load|load]]
 
|Method to load a user, user groups, and any other necessary data from the database so that it can be bound to the user object.  
 
|Method to load a user, user groups, and any other necessary data from the database so that it can be bound to the user object.  
 
|-
 
|-
 
|public  
 
|public  
|[[JTableUser::setLastVisit/11.1|setLastVisit]]
+
|[[API17:JTableUser::setLastVisit|setLastVisit]]
 
|Updates last visit time of user.  
 
|Updates last visit time of user.  
 
|-
 
|-
 
|public  
 
|public  
|[[JTableUser::store/11.1|store]]
+
|[[API17:JTableUser::store|store]]
 
|Method to store a row in the database from the  instance properties.  
 
|Method to store a row in the database from the  instance properties.  
 
|-
 
|-
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/database/table/user.php
 
* '''Defined in''' libraries/joomla/database/table/user.php
* '''Extends''' [[JTable/11.1|JTable]]
+
* '''Extends''' [[API17:JTable|JTable]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.database.table.user' );</source>
 
<source lang="php">jimport( 'joomla.database.table.user' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JTableUser source code''' on [[jplatform:database/table/user.php|BitBucket]]
 
* {{JVer|11.1}} '''JTableUser source code''' on [[jplatform:database/table/user.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Database/11.1|Database]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Database|Database]]
* [[JTableUser|Other versions of JTableUser]]
+
* [[API17:JTableUser|Other versions of JTableUser]]
 
{{SeeAlso:JTableUser}}
 
{{SeeAlso:JTableUser}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">

Revision as of 21:43, 11 May 2013

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JTableUser[edit]

Description[edit]

Template:Description:JTableUser [Edit Descripton]

Methods[edit]

Visibility Method name Description
public __construct
public bind Method to bind the user, user groups, and any other necessary data.
public check Validation and filtering.
public delete Method to delete a user, user groups, and any other necessary data from the database.
public load Method to load a user, user groups, and any other necessary data from the database so that it can be bound to the user object.
public setLastVisit Updates last visit time of user.
public store Method to store a row in the database from the instance properties.
  • Defined in libraries/joomla/database/table/user.php
  • Extends JTable

Importing[edit]

jimport( 'joomla.database.table.user' );

See also[edit]

Template:SeeAlso:JTableUser [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />