Example #1
0
 /**
  * Load an array of DlePost objects,
  * by Tags Index(es)
  * @param string $strTags
  * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query
  * @return DlePost[]
  */
 public static function LoadArrayByTags($strTags, $objOptionalClauses = null)
 {
     // Call DlePost::QueryArray to perform the LoadArrayByTags query
     try {
         return DlePost::QueryArray(QQ::Equal(QQN::DlePost()->Tags, $strTags), $objOptionalClauses);
     } catch (QCallerException $objExc) {
         $objExc->IncrementOffset();
         throw $objExc;
     }
 }