Lines Matching refs:get
113 function get() { function in helper_plugin_schulzevote
144 $get = $this->get();
147 while (count($get) > 0) {
149 foreach (array_keys($get) as $test) {
150 if ($this->isWinnerCandidate($test, $get)) {
155 $winners = array_keys($get);
158 unset($get[$winner]);
166 $get = $this->get();
171 if ($this->isWinner($test, $get)) {
180 function isWinnerCandidate($candy, $get) { argument
183 if ($get[$candy][$other] < $get[$other][$candy]) {
190 function isWinner($candy, $get) { argument
193 if ($get[$candy][$other] <= $get[$other][$candy]) {