Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1.     public function __construct(View $view) {
  2.         $this->view = $view;
  3.         $this->gundb = array(
  4.             'AR-15' => array('AR-15', 'Assault Rifle'),
  5.             'L96' => array('L96', 'Precision Rifle'),
  6.             'M110' => array('M110', 'Designated Marksman Rifle'),
  7.         );
  8.  
  9.     }
  10.  
  11.     public function showGun($id) {
  12.         if ($id != null){
  13.             $this->view->makeGunPage("AR-15", "Assault Rifle");
  14.             } else {
  15.             $this->view->makeUnknownGunPage();
  16.         }
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement