CODE STYLE some classes in classes/model

This commit is contained in:
Fernando Ontiveros
2012-10-20 16:01:28 -04:00
committed by root
parent 35de8ac088
commit ad53bd8a50
12 changed files with 984 additions and 979 deletions

View File

@@ -22,12 +22,12 @@ class UsersProperties extends BaseUsersProperties
public $usrID = '';
public $lang = 'en';
function __construct ()
public function __construct ()
{
$this->lang = defined( 'SYS_LANG' ) ? SYS_LANG : 'en';
}
function UserPropertyExists ($sUserUID)
public function UserPropertyExists ($sUserUID)
{
$oUserProperty = UsersPropertiesPeer::retrieveByPk( $sUserUID );
if (! is_null( $oUserProperty ) && is_object( $oUserProperty ) && get_class( $oUserProperty ) == 'UsersProperties') {
@@ -436,5 +436,4 @@ class UsersProperties extends BaseUsersProperties
return $baseUrl . $url;
}
}
// UsersProperties