| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 88.89% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class Sort extends Zend_View_Helper_Abstract |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Return an HTML links to be able to sort (will typically be in table header) |
||
| 11 | * |
||
| 12 | * @param string $label |
||
| 13 | * @param string $column |
||
| 14 | * @param string $selectedSortKey |
||
| 15 | * @param string $selectedSortOrder |
||
| 16 | * @param array $additionalParameters |
||
| 17 | * |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | 1 | public function sort($label, $column, $selectedSortKey, $selectedSortOrder, array $additionalParameters = null) |
|
| 37 |