linea21-core
[ class tree: linea21-core ] [ index: linea21-core ] [ all elements ]

Source for file pgsql.inc.php

Documentation is available at pgsql.inc.php

  1. <?php
  2. /**
  3.  * @package linea21.core
  4.  * @subpackage admin
  5.  * @author linea21 <info@linea21.com>
  6.  * @version $id SVN
  7.  * @access public
  8.  * @license http://opensource.org/licenses/gpl-3.0.html
  9.  */
  10.  
  11. function SQL_Get_UserInfo4Auth($login$pass{
  12.   $q "SELECT U.user_id, R.*, P.profile_firstname FROM " T_USER " AS U LEFT OUTER JOIN " T_RIGHT " AS R ON U.user_rights =R.rights_id LEFT OUTER JOIN " T_PROFILE " AS P ON  U.user_profile=P.profile_id WHERE lower(user_login) = '".strtolower($login)."' AND user_password='".$pass."' AND user_validity='Y';";
  13.   return $q;
  14. }
  15. function SQL_Get_isWorkgroupUser($id{
  16.   $q "SELECT user_id ,  jwu_workshop_id FROM " T_USER " As U LEFT OUTER JOIN " J_WORK_USERS " As W ON U.user_id=W.jwu_user_id WHERE user_id='".$id."' AND user_validity='Y';";
  17.   return $q;
  18. }
  19.     $q "SELECT user_id ,  jwu_workshop_id FROM " T_USER " As U LEFT OUTER JOIN " J_WORK_USERS " As W ON U.user_id=W.jwu_user_id WHERE user_id='".$id."' AND user_validity='Y' AND jwu_user_right='O';";
  20.     return $q;
  21. }
  22. function SQL_get_UserInfo($login{
  23.   $q "SELECT U.user_id, U.user_login, P.profile_email FROM " T_USER " AS U LEFT OUTER JOIN " T_PROFILE " AS P ON  U.user_profile=P.profile_id WHERE lower(user_login) = '".strtolower($login)."' AND user_validity='Y';";
  24.   return $q;
  25. }
  26.  
  27. function SQL_get_UserInfoPK($passkey{
  28.   $q "SELECT U.user_id, U.user_login, P.profile_email FROM " T_USER " AS U LEFT OUTER JOIN " T_PROFILE " AS P ON  U.user_profile=P.profile_id WHERE user_forget_passkey = '".$passkey."' AND user_validity='Y';";
  29.   return $q;
  30. }
  31.  
  32. function SQL_Get_UserWorkshopOwner($workshop_id{
  33.   $q "SELECT jwu_user_id FROM " J_WORK_USERS " WHERE jwu_workshop_id='".$workshop_id."';";
  34.  
  35.   return $q;
  36. }
  37.  
  38. ?>

Documentation generated on Thu, 03 May 2012 15:07:05 +0200 by phpDocumentor 1.4.1