PMA\libraries\DisplayResults::_getCheckboxAndLinks PHP Method

    private function _getCheckboxAndLinks($position, $del_url, $displayParts, $row_no, $where_clause, $where_clause_html, $condition_array, $edit_url, $copy_url, $class, $edit_str, $copy_str, $del_str, $js_conf)
    {
        $ret = '';
        if ($position == self::POSITION_LEFT) {
            $ret .= $this->_getCheckboxForMultiRowSubmissions($del_url, $displayParts, $row_no, $where_clause_html, $condition_array, '_left', '');
            $ret .= $this->_getEditLink($edit_url, $class, $edit_str, $where_clause, $where_clause_html);
            $ret .= $this->_getCopyLink($copy_url, $copy_str, $where_clause, $where_clause_html, '');
            $ret .= $this->_getDeleteLink($del_url, $del_str, $js_conf, '');
        } elseif ($position == self::POSITION_RIGHT) {
            $ret .= $this->_getDeleteLink($del_url, $del_str, $js_conf, '');
            $ret .= $this->_getCopyLink($copy_url, $copy_str, $where_clause, $where_clause_html, '');
            $ret .= $this->_getEditLink($edit_url, $class, $edit_str, $where_clause, $where_clause_html);
            $ret .= $this->_getCheckboxForMultiRowSubmissions($del_url, $displayParts, $row_no, $where_clause_html, $condition_array, '_right', '');
        } else {
            // $position == self::POSITION_NONE
            $ret .= $this->_getCheckboxForMultiRowSubmissions($del_url, $displayParts, $row_no, $where_clause_html, $condition_array, '_left', '');
        }
        return $ret;
    }
DisplayResults