remote-installer-skin.php 573 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace NinjaForms;
  3. /**
  4. * A blank plugin installer skin.
  5. */
  6. class Remote_Installer_Skin extends \Plugin_Installer_Skin
  7. {
  8. protected $errors;
  9. public function error( $errors ){
  10. $this->errors = $errors;
  11. }
  12. public function get_errors(){
  13. return $this->errors;
  14. }
  15. public function feedback( $string ){
  16. // This section intentionally left blank
  17. }
  18. public function before(){
  19. // This section intentionally left blank.
  20. }
  21. public function after(){
  22. // This section intentionally left blank.
  23. }
  24. }