예제 #1
0
파일: Login.class.php 프로젝트: bobah/acbdb
 function getAffiliates()
 {
     $affDao = new BaseDao("Affiliate");
     $affExample = $affDao->getPattern();
     $this->affiliates = $affDao->searchWhere($affExample, "editor=" . $this->id);
     return $this->affiliates;
 }