PluginProbe
Locatoraid Store Locator / trunk
Locatoraid Store Locator vtrunk
3.9.73 3.9.72 3.9.70 trunk 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 3.1.5 3.9.12 3.9.19 3.9.30 3.9.31 3.9.42 3.9.43 3.9.44 3.9.45 3.9.46 3.9.47 3.9.48 3.9.49 All 39 releases
locatoraid / modules / priority / presenter.php

presenter.php in Locatoraid Store Locator trunk, at modules/priority/presenter.php

14 lines 372 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }