Plugin Directory

Changeset 1709927


Ignore:
Timestamp:
08/08/2017 03:35:45 AM (9 years ago)
Author:
roblesterjr
Message:

Changed methods to public

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wp-vbx-lite/trunk/includes/WP_VBX_Applet.php

    r1707014 r1709927  
    214214     * @return void
    215215     */
    216     final protected function selected($val, $sel) {
     216    final public function selected($val, $sel) {
    217217        if ($val == $sel) echo 'selected';
    218218        else echo '';
     
    227227     * @return void
    228228     */
    229     final protected function checked($val, $sel) {
     229    final public function checked($val, $sel) {
    230230        if ($val == $sel) echo 'checked';
    231231        else echo '';
     
    347347     * @return void
    348348     */
    349     protected function field_name($field, $echo = true) {
     349    final public function field_name($field, $echo = true) {
    350350        $name = "flow[{$this->index}][$field]";
    351351        if (!$echo) return $name;
     
    361361     * @return void
    362362     */
    363     final protected function run($name = 'next') {
     363    final public function run($name = 'next') {
    364364       
    365365        do_action( 'wp-vbx-applet-run', $name, $this );
Note: See TracChangeset for help on using the changeset viewer.