| 1 |
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly |
| 2 |
class Priority_Presenter_LC_HC_MVC extends _HC_MVC |
| 3 |
{ |
| 4 |
public function present_options() |
| 5 |
{ |
| 6 |
$return = array( |
| 7 |
0 => __('Normal', 'locatoraid'), |
| 8 |
1 => __('Featured', 'locatoraid'), |
| 9 |
-1 => __('Draft', 'locatoraid'), |
| 10 |
// 2 => __('Always Show', 'locatoraid'), |
| 11 |
); |
| 12 |
return $return; |
| 13 |
} |
| 14 |
} |