Lines:
1 to 75 of 75
<?php // (C) Copyright Bobbing Wide 2012-2018 if ( !defined( "OIK_PLUGINS_INCLUDED" ) ) { define( "OIK_PLUGINS_INCLUDED", "0.2.1" ); /** * Library: oik_plugins * Provides: oik_plugins * Depends: oik-admin, class-oik-update * Deferred dependencies: oik-depends, class-oik-remote * Version: see above ? * * Implements oik/admin/oik-plugins.inc as a shared library: bobbingwide/oik_plugins * Note: hyphens for plugins, underscores for libraries, hyphens for class libraries */ /* function oik_lazy_plugins_server_settings() – oik plugins settings page */ /* function _oik_plugins_settings_row() – Display current settings for a plugin */ /* function _oik_plugins_load_registered_plugins() – Load registered plugins */ /* function _oik_plugins_settings_table() – Display the oik plugins profile values and other information */ /* function _oik_plugins_add_settings() – Add the settings for the plugin */ /* function _oik_plugins_update_settings() – Update the settings for a plugin */ /* function _oik_plugins_delete_settings() – Delete the settings for a plugin */ /* function oik_plugins_validate_plugin() – Validate the plugin name: plugin must not be blank */ /* function _oik_plugins_settings_validate() – Validate the plugin’s settings and add/update if required */ /* function oik_plugins_settings() – Display the plugin settings table form */ /* function oik_plugins_add_settings() – Display the add settings form */ /* function oik_plugins_edit_settings() – Display the edit settings form */ /* function oik_plugins_check() – Checks a plugin for updates */ /* function oik_plugin_record_new_version() – Let WordPress know that there is a new version of the plugin */ /* function oik_plugin_new_version() – Produce an Update plugin link */ if ( !function_exists( "bw_update_option" ) ) { /* function bw_update_option() – Set the value of an option field in the options group */ } if ( !function_exists( "bw_delete_option" ) ) { /* function bw_delete_option() – Remove an option field from a set */ } /* function bw_get_plugin_slugs() – Obtain the plugin slugs */ /* function _bw_get_plugin_version() – Return the plugin version */ /* function _bw_get_plugins() – Returns the plugin names */ /* function bw_get_plugin_name() – Get the full plugin name given the slug */ /* function bw_get_plugin_version() – Returns current plugin version. */ if ( !function_exists( "oik_get_plugins_server" ) ) { /* function oik_get_plugins_server() – Return the URL for the Premium (Pro) or Freemium version */ } } else { //echo __FILE__; }View on GitHub