Lines Matching refs:target
64 foreach ($targets as $target){
65 $linkbacks = $this->_getLinkbacks($target);
66 $this->_targetHead($target);
72 ptln('<form method="post" action="'.wl($target['id']).'">', 8);
77 $this->_actionButtons($target['id']);
121 * Callback for comparison of target data.
137 function _targetHead($target){
138 $id = $target['id'];
154 $selected = (($target[$key]) ? ' checked="checked"' : '');
168 function _getLinkbacks(&$target){
169 $id = $target['id'];
171 if (!$target['file']) $target['file'] = metaFN($id, '.linkbacks');
172 if (!@file_exists($target['file'])) return false; // no discussion thread at all
174 $data = unserialize(io_readFile($target['file'], false));
176 $target['send'] = $data['send'];
177 $target['receive'] = $data['receive'];
178 $target['display'] = $data['display'];
179 $target['number'] = $data['number'];