You appear to be a bot. Output may be restricted
Description
Implement oik's themes pageThis allows oik-weight-zone-shipping-pro and other oik themes to implement automatic / manual updates from an oik-themes server. The logic caters for oik, or another theme, already providing the logic. See "admin_menu". When we've
Usage
OIK_Theme_Update::oik_themes_do_page();
Parameters
Returns
voidSource
File name: oik-libs/libs/class-oik-theme-update.phpLines:
1 to 33 of 33
function oik_themes_do_page() { $loaded = $this->bootstrap_oik_libs(); if ( $loaded ) { $dependencies = array( "class-bobbcomp" => "0.0.1" , "bobbfunc" => "3.0.0" , "bobbforms" => "3.0.1" , "oik-admin" => "3.0.1" , "oik-depends" => "3.0.0" , "oik_themes" => "0.0.2" ); $loaded = $this->require_dependencies( $dependencies ); //$bobbcomp = $this->require_lib( "class-bobbcomp", "0.0.1" ); //if ( $bobbcomp ) { // $bobbfunc = $this->require_lib( "bobbfunc", "3.0.0" ); // if ( $bobbfunc ) { // $bobbforms = $this->require_lib( "bobbforms", "3.0.1" ); // if ( $bobbforms ) { // $admin = $this->require_lib( "oik-admin", "3.0.1" ); // if ( $admin ) { // $depends = $this->require_lib( "oik-depends", "3.1.0" ); // if ( $depends ) { // $themes = $this->require_lib( "oik_themes", "0.1.0" ); // if ( $themes ) { if ( $loaded ) { oik_lazy_themes_server_settings(); bw_flush() ; } else { $this->show_update_nag( "eh?" ); } } }View on GitHub