/**
  * Loads an application
  */
 public function load_object(array $args)
 {
     $this->object = com_meego_devprogram_apputils::get_application_by_guid($args['application_guid']);
     // by default we set this to true so that the toolbar is visible
     // we remove the toolbar on the judge form
     $this->object->can_manage = true;
     // set the application data
     $this->data['application'] = $this->object;
     // also get the program the application was submitted for
     $this->data['program'] = $this->object->programobject;
 }