<?
defined('OK') or die();
/ Carga la configuracion para acceso /
/ Load default login configuration /
return array(
// Nombre del campo usuario / User field name
'login:usuario' => array('sdata','user'),
// Nombre del campo de contraseña / Password field name
'login:contrasinal' => array('sdata','pass'),
// Si la contraseña se recibe ya encriptada o si debemos encriptarla antes
// de realizar la comprobación de login
// If the password it's encripted or if pfn must crypted after check user
// true = it's encripted | false = pfn must crypt
'login:encriptada' => true,
// Metodo para obtener los datos / Method to obtain data
// post | get | session | server
'login:metodo' => 'session'
);
?>
This code is in a file (login.inc.php) included in another file (index.php). "index.php" contains the following code:
<?
$_SESSION['sdata'][] = array(
"user" => "test",
"pass" => md5("test")
);
?>
Can someone tell me what purpose the colon serves between "login" and "usuario"? Or could you just explain what is happening here? What is "login:usuario"? Any way you can answer the question would be helpful.
It is valid as far as syntax goes, because it is used often in the code of PHPfileNavigator ([url]http://pfn.sourceforge.net)[/url], but I haven't seen it before now.
Thanks for any help!