load->library('migration'); } public function index() { $this->load->view('migrate/manage'); } public function perform_migration() { if( ! $this->migration->latest()) { echo json_encode(array('success' => FALSE, 'message' => $this->lang->line('migrate_failed - ' . $this->migration->error_string()))); } else { echo json_encode(array('success' => TRUE, 'message' => $this->lang->line('migrate_success'))); } } } ?>