Plugin Directory

Changeset 1159140


Ignore:
Timestamp:
05/12/2015 08:46:45 PM (11 years ago)
Author:
magiclogix
Message:

Added about page

Location:
msync/trunk/admin
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • msync/trunk/admin/class-msync-admin.php

    r1158015 r1159140  
    9191    add_submenu_page('msync', 'mSync: All Forms', 'All Forms', 'manage_options', 'msync', array(&$this, 'display_msync_forms'));
    9292    add_submenu_page('msync', 'mSync: Add New', 'Add New', 'manage_options', 'builder', array(&$this, 'display_msync_form_builder'));
    93     add_submenu_page('msync', 'mSync: How it Works', 'About', 'manage_options', 'about', 'display_msync_about');
     93    add_submenu_page('msync', 'mSync: How it Works', 'About', 'manage_options', 'about', array(&$this, 'display_msync_about'));
    9494  }
    9595
     
    9898    $plugin_ready = $this->is_plugin_ready();
    9999    require(dirname( __FILE__ ) . '/partials/msync-admin-settings-form.php');
     100  }
     101
     102  public function display_msync_about() {
     103    require(dirname( __FILE__ ) . '/partials/msync-about.php');
    100104  }
    101105
Note: See TracChangeset for help on using the changeset viewer.