phpDataMapper_Query::mapper PHP 메소드

mapper() 공개 메소드

Get current adapter object
public mapper ( )
    public function mapper()
    {
        return $this->_mapper;
    }

Usage Example

예제 #1
0
 /**
  *
  */
 public function __construct(phpDataMapper_Query $query, $page = 1, $itemsPerPage = 30)
 {
     $this->_mapper = $query->mapper();
     $this->_query = $query;
     $this->page($page);
     $this->perPage($itemsPerPage);
 }
All Usage Examples Of phpDataMapper_Query::mapper