コード例 #1
0
ファイル: PublicLogin.class.php プロジェクト: alcf/chms
 /**
  * This will email the Username information (or Usernames) for a given Email address,
  * if any is found.  If none is found, this will do nothing.
  * @param string $strEmailAddress
  */
 public static function RetrieveUsernameForEmail($strEmailAddress)
 {
     // Look for associated accounts
     $objPublicLoginArray = PublicLogin::QueryArray(QQ::Equal(QQN::PublicLogin()->Person->PrimaryEmail->Address, $strEmailAddress), QQ::Expand(QQN::PublicLogin()->Person));
     // If none found, return
     if (!count($objPublicLoginArray)) {
         // Setup email info
         $strFromAddress = 'ALCF my.alcf Account Support <*****@*****.**>';
         $strToAddress = trim(strtolower($strEmailAddress));
         $strSubject = 'Account Support: Retreive Your Username';
         // Setup the SubstitutionArray
         $strArray = array();
         // Setup Always-Used Fields
         $strArray['CONTACT'] = strip_tags(Registry::GetValue('contact_sentence_my_alcf_support'));
         $strArray['EMAIL'] = $strEmailAddress;
         $strTemplateName = 'retrieve_username_none';
         OutgoingEmailQueue::QueueFromTemplate($strTemplateName, $strArray, $strToAddress, $strFromAddress, $strSubject);
         return;
     }
     // Setup email info
     $strFromAddress = 'ALCF my.alcf Account Support <*****@*****.**>';
     $strToAddress = trim(strtolower($strEmailAddress));
     $strSubject = 'Account Support: Retreive Your Username';
     // Setup the SubstitutionArray
     $strArray = array();
     // Setup Always-Used Fields
     $strArray['PERSON_NAME'] = $objPublicLoginArray[0]->Person->Name;
     $strArray['CONTACT'] = strip_tags(Registry::GetValue('contact_sentence_my_alcf_support'));
     if (count($objPublicLoginArray) == 1) {
         // Template
         $strTemplateName = 'retrieve_username_single';
         $strArray['USERNAME'] = $objPublicLoginArray[0]->Username;
     } else {
         // Template
         $strTemplateName = 'retrieve_username_multiple';
         $strUsernameList = array();
         foreach ($objPublicLoginArray as $objPublicLogin) {
             $strUsernameList[] = 'Username:  '******'USERNAMES'] = implode("\r\n", $strUsernameList);
     }
     OutgoingEmailQueue::QueueFromTemplate($strTemplateName, $strArray, $strToAddress, $strFromAddress, $strSubject);
 }
コード例 #2
0
ファイル: PublicLoginGen.class.php プロジェクト: alcf/chms
 /**
  * Load all PublicLogins
  * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query
  * @return PublicLogin[]
  */
 public static function LoadAll($objOptionalClauses = null)
 {
     // Call PublicLogin::QueryArray to perform the LoadAll query
     try {
         return PublicLogin::QueryArray(QQ::All(), $objOptionalClauses);
     } catch (QCallerException $objExc) {
         $objExc->IncrementOffset();
         throw $objExc;
     }
 }
コード例 #3
0
 /**
  * Main utility method to aid with data binding.  It is used by the default BindAllRows() databinder but
  * could and should be used by any custom databind methods that would be used for instances of this
  * MetaDataGrid, by simply passing in a custom QQCondition and/or QQClause. 
  *
  * If a paginator is set on this DataBinder, it will use it.  If not, then no pagination will be used.
  * It will also perform any sorting (if applicable).
  *
  * @param QQCondition $objConditions override the default condition of QQ::All() to the query, itself
  * @param QQClause[] $objOptionalClauses additional optional QQClause object or array of QQClause objects for the query		 
  * @return void
  */
 public function MetaDataBinder(QQCondition $objCondition = null, $objOptionalClauses = null)
 {
     // Setup input parameters to default values if none passed in
     if (!$objCondition) {
         $objCondition = QQ::All();
     }
     $objClauses = $objOptionalClauses ? $objOptionalClauses : array();
     // We need to first set the TotalItemCount, which will affect the calcuation of LimitClause below
     if ($this->Paginator) {
         $this->TotalItemCount = PublicLogin::QueryCount($objCondition, $objClauses);
     }
     // If a column is selected to be sorted, and if that column has a OrderByClause set on it, then let's add
     // the OrderByClause to the $objClauses array
     if ($objClause = $this->OrderByClause) {
         array_push($objClauses, $objClause);
     }
     // Add the LimitClause information, as well
     if ($objClause = $this->LimitClause) {
         array_push($objClauses, $objClause);
     }
     // Set the DataSource to be a Query result from PublicLogin, given the clauses above
     $this->DataSource = PublicLogin::QueryArray($objCondition, $objClauses);
 }