/**
  * Constructor
  *
  * @author Abhinav Kumar
  * @return \Controller_IssueHistory "true" on Success, "false" otherwise
  */
 public function __construct()
 {
     parent::__construct();
     $this->Load->Library('JIRA:JIRABridge', false, false, 'jira');
     $this->Load->Library('JIRA:JIRAComment', false, false);
     return true;
 }
 /**
  * Constructor
  *
  * @author Abhinav Kumar
  * @return \Controller_Bug "true" on Success, "false" otherwise
  */
 public function __construct()
 {
     parent::__construct();
     $_SWIFT = SWIFT::GetInstance();
     $this->Load->LoadModel('Ticket:Ticket', APP_TICKETS);
     $this->Load->LoadApp('AuditLog:TicketAuditLog', APP_TICKETS);
     $this->Load->Library('JIRA:JIRABridge', false, false);
     $this->Load->Library('JIRA:JIRAComment', false, false);
     $this->Language->Load('jira');
     $_SWIFT->Language->LoadApp('jira', 'jira');
     SWIFT_Ticket::LoadLanguageTable();
     return true;
 }
 /**
  * Constructor
  *
  * @author Varun Shoor
  * @return bool "true" on Success, "false" otherwise
  */
 public function __construct()
 {
     parent::__construct();
     $this->Load->Library('FreshBooksWrapper:FreshbooksWrapper');
     return true;
 }