(801) 534-1262 * @copyright Copyright CiviCRM LLC (C) 2009 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html * GNU Affero General Public License version 3 * @version $Id: GroupTestDataProvider.php 23715 2009-09-21 06:35:47Z shot $ * @package CiviCRM * * This file is part of CiviCRM * * CiviCRM is free software; you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation; either version 3 of * the License, or (at your option) any later version. * * CiviCRM is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public * License along with this program. If not, see * . */ /** * Provide data to the CRM_Contact_BAO_QueryTest class * * @package CiviCRM */ class CRM_Contact_BAO_QueryTestDataProvider implements Iterator { /** * Current count. * * @var int */ private $i = 0; /** * @var mixed[] * This dataset describes various form values and what contact * IDs should be selected when the form values are applied to the * database in dataset.xml */ private $dataset = [ // Include static group 3 [ 'fv' => ['group' => '3'], 'id' => [ '17', '18', '19', '20', '21', '22', '23', '24', ], ], // Include static group 5 [ 'fv' => ['group' => '5'], 'id' => [ '13', '14', '15', '16', '21', '22', '23', '24', ], ], // Include static groups 3 and 5 [ 'fv' => ['group' => ['3', '5']], 'id' => [ '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', ], ], // Include static groups 3 and 5 in legacy format [ 'fv' => ['group' => ['3' => 1, '5' => 1]], 'id' => [ '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', ], ], // Include tag 7 [ 'fv' => ['tag' => '7'], 'id' => [ '11', '12', '15', '16', '19', '20', '23', '24', ], ], // Include tag 9 [ 'fv' => ['tag' => ['9' => 1]], 'id' => [ '10', '12', '14', '16', '18', '20', '22', '24', ], ], // Include tags 7 and 9 [ 'fv' => ['tag' => ['7', '9']], 'id' => [ '10', '11', '12', '14', '15', '16', '18', '19', '20', '22', '23', '24', ], ], // gender_id 1 = 'Female' [ 'fv' => ['gender_id' => 1], 'id' => ['9', '20', '22'], ], // prefix_id 2 = 'Ms.' [ 'fv' => ['prefix_id' => 2], 'id' => ['10', '13'], ], // suffix_id 6 = 'V' [ 'fv' => ['suffix_id' => 6], 'id' => ['16', '19', '20', '21'], ], ]; public function _construct() { $this->i = 0; } public function rewind() { $this->i = 0; } /** * @return array */ public function current() { $count = count($this->dataset[$this->i]['id']); $ids = $this->dataset[$this->i]['id']; $full = []; foreach ($this->dataset[$this->i]['id'] as $key => $value) { $full[] = [ 'contact_id' => $value, 'contact_type' => 'Individual', 'sort_name' => "Test Contact $value", ]; } return [$this->dataset[$this->i]['fv'], $count, $ids, $full]; } /** * @return int */ public function key() { return $this->i; } public function next() { $this->i++; } /** * @return bool */ public function valid() { return isset($this->dataset[$this->i]); } } // class CRM_Contact_BAO_QueryTestDataProvider