Lines:
1 to 73 of 73
<?php // (C) Copyright Bobbing Wide 2013-2022 if ( !defined( "OIK_THEMES_INCLUDED" ) ) { define( "OIK_THEMES_INCLUDED", "0.2.3" ); /** * Library: oik_themes * Provides: oik_themes * Depends: oik-admin, class-oik-update * Deferred dependencies: oik-depends, class-oik-remote * * Implements oik/admin/oik-themes.inc as a shared library: bobbingwide/oik_themes * Note: hyphens for plugins, underscores for libraries */ /* function oik_lazy_themes_server_settings() – oik themes settings page */ /* function _oik_themes_settings_row() – Display current settings for a theme */ /* function _oik_themes_load_registered_themes() – Load registered themes */ /* function _oik_themes_settings_table() – This should also list the themes that have registered themselves using oik_register_theme_server() */ /* function _oik_themes_add_settings() – Add the settings for the theme */ /* function _oik_themes_update_settings() – */ /* function _oik_themes_delete_settings() – */ /* function oik_themes_validate_theme() – theme must not be blank */ /* function _oik_themes_settings_validate() – Validates the settings for the theme */ /* function oik_themes_settings() – Displays the registered theme’s settings */ /* function oik_themes_add_settings() – Displays the add theme box */ /* function oik_themes_edit_settings() – Displays the edit theme box */ /* function oik_themes_check() – Check for an updated theme */ /* function oik_theme_record_new_version() – Let WordPress know that there is a new version of the theme */ /* function oik_theme_new_version() – Enable upgrade to the new version of the theme */ /* function oik_update_theme() – Creates the Upgrade theme 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_theme_slugs() – */ /* function _bw_get_theme_version() – Get the theme version given the theme name */ /* function _bw_get_themes() – */ /* function bw_get_theme_name() – Return the WP_theme object for the named theme */ /* function bw_get_theme_version() – Returns current theme version. */ /* function bw_get_theme_server() – Determine the server that supports this theme */ } else { //echo __FILE__; }View on GitHub View on Trac