This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2019-07-16 13:17:22 +02:00
|
|
|
//
|
|
|
|
|
// GeneralViewController.swift
|
|
|
|
|
// AvH Plan
|
|
|
|
|
//
|
|
|
|
|
// Created by Deniz Duezgoeren on 16.07.19.
|
|
|
|
|
// Copyright © 2019 Deniz Duezgoeren. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
|
|
class GeneralViewController: PlanViewController {
|
|
|
|
|
|
|
|
|
|
override func viewDidLoad() {
|
|
|
|
|
super.viewDidLoad()
|
2019-08-03 11:01:56 +02:00
|
|
|
self.navigationController?.navigationBar.topItem?.title = NSLocalizedString("avh_plan", comment: "")
|
2019-07-16 13:17:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
override func getViewType() -> String {
|
|
|
|
|
return "plan"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
override func getRefreshViewString() -> String {
|
2019-07-17 21:54:38 +02:00
|
|
|
return NSLocalizedString("fetch_plan", comment: "")
|
2019-07-16 13:17:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
override func getFromDatabase() -> [SubstModel] {
|
|
|
|
|
return df.getFromDatabase()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|