group

  // AR Group
  public function group($group = array())
  {
    if(is_array($group)) $_group = $group;
    else $_group[] = $group;
    $this->getDbCriteria()->mergeWith(
      array(
        'group' => implode(',', $_group),
      )
    );
    return $this;
  }