API17

JAuthentication::authenticate: Difference between revisions

From Joomla! Documentation

Doxiki2 (talk | contribs)
Bulk upload by Doxiki2
 
m preparing for archive only
 
(6 intermediate revisions by 2 users not shown)
Line 4: Line 4:
Finds out if a set of login credentials are valid by asking all obvserving objects to run their respective authentication routines.  
Finds out if a set of login credentials are valid by asking all obvserving objects to run their respective authentication routines.  


{{Description:JAuthentication::authenticate}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JAuthentication::authenticate|Edit Descripton]]<nowiki>]</nowiki>
</span>
===Since===
{{JVer|11.1 }}
===Synopsis===
<source lang="php">
<source lang="php">
public JAuthentication->authenticate ($credentials, $options)
public function authenticate (
        $credentials
        $options
)
</source>
</source>
{| class="wikitable"
{| class="wikitable"
Line 32: Line 30:
|-
|-
|}
|}
===Returns===
* '''Returns''' mixed Integer userid for valid user if credentials are valid or boolean false if they are not
mixed Integer userid for valid user if credentials are valid or boolean false if they are not
* '''Defined''' on line 83 of libraries/joomla/user/authentication.php
===Defined in===
* '''Since''' {{JVer|11.1 }}
libraries/joomla/user/authentication.php
===Referenced by===
===See also===
===See also===
<span class="editsection" style="font-size:76%;">
* {{JVer|11.1}} '''JAuthentication::authenticate source code''' on [[jplatform:user/authentication.php#cl-75|BitBucket]]
<nowiki>[</nowiki>[[SeeAlso:JAuthentication::authenticate|Edit See Also]]<nowiki>]</nowiki>
* {{JVer|11.1}} Class [[API17:JAuthentication|JAuthentication]]
</span>
* {{JVer|11.1}} Subpackage [[API17:Subpackage_User|User]]
* [[JAuthentication/11.1|JAuthentication]]
* [[API17:JAuthentication::authenticate|Other versions of JAuthentication::authenticate]]
* [[JAuthentication::authenticate|Other versions of this method]]
 
{{SeeAlso:JAuthentication::authenticate}}
 
===Examples===
===User contributed notes===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JAuthentication::authenticate
category=JAuthentication::authenticate
category=CodeExample
namespace=CodeExample
category=MethodExample
category=MethodExample
include=*
include=*
namespace=CodeExample
format= ,,,
format= ,,,
</dpl>
</dpl>
<noinclude>[[Category:JAuthentication]][[Category:JAuthentication::authenticate]]</noinclude>
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 02:21, 25 March 2017

Joomla 11.1 JAuthentication::authenticate

Description

Finds out if a set of login credentials are valid by asking all obvserving objects to run their respective authentication routines.


public function authenticate (
        $credentials
        $options
)
Parameter Type Default Description
$credentials array Array holding the user credentials
$options
  • Returns mixed Integer userid for valid user if credentials are valid or boolean false if they are not
  • Defined on line 83 of libraries/joomla/user/authentication.php
  • Since Joomla 11.1

See also


User contributed notes

Code Examples