installer-upgrader-skins.php 696 Bytes
Newer Older
John Punzalan's avatar
John Punzalan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
<?php
  class Installer_Upgrader_Skins extends WP_Upgrader_Skin{
      
      function __construct($args = array()){
          $defaults = array( 'url' => '', 'nonce' => '', 'title' => '', 'context' => false );
          $this->options = wp_parse_args($args, $defaults);
      }
      
      function header(){
          
      }
      
      function footer(){
          
      }
      
      function error($error){
          $this->installer_error = $error;
      }
      
      function add_strings(){
          
      }
      
      function feedback($string){
          
      }
      
      function before(){
          
      }
      
      function after(){
          
      }
      
  }