Guest User

Untitled

a guest
Jul 16th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Fuel\Application;
  4.  
  5. class Controller_Install extends Controller\Base {
  6.  
  7. public function action_index()
  8. {
  9. CLI::write(Cli::color('Getting ready to Install!', 'blue'));
  10. Cli::write("We need some information first.\n");
  11. $path = Cli::read('Where would you like to install?');
  12.  
  13. Cli::write('Please wait while we install...');
  14.  
  15. // Pretend we are installing something here
  16. Cli::wait(5);
  17.  
  18. Cli::beep();
  19. Cli::write('Complete!');
  20. Cli::wait();
  21. }
  22. }
Add Comment
Please, Sign In to add comment