Changeset 1709927
- Timestamp:
- 08/08/2017 03:35:45 AM (9 years ago)
- File:
-
- 1 edited
-
wp-vbx-lite/trunk/includes/WP_VBX_Applet.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-vbx-lite/trunk/includes/WP_VBX_Applet.php
r1707014 r1709927 214 214 * @return void 215 215 */ 216 final p rotectedfunction selected($val, $sel) {216 final public function selected($val, $sel) { 217 217 if ($val == $sel) echo 'selected'; 218 218 else echo ''; … … 227 227 * @return void 228 228 */ 229 final p rotectedfunction checked($val, $sel) {229 final public function checked($val, $sel) { 230 230 if ($val == $sel) echo 'checked'; 231 231 else echo ''; … … 347 347 * @return void 348 348 */ 349 protectedfunction field_name($field, $echo = true) {349 final public function field_name($field, $echo = true) { 350 350 $name = "flow[{$this->index}][$field]"; 351 351 if (!$echo) return $name; … … 361 361 * @return void 362 362 */ 363 final p rotectedfunction run($name = 'next') {363 final public function run($name = 'next') { 364 364 365 365 do_action( 'wp-vbx-applet-run', $name, $this );
Note: See TracChangeset
for help on using the changeset viewer.