Skip to content
  • This project
    • Loading...
  • Sign in

杨建斌 / page

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 1
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • page
  • application
  • controllers
  • Config.php
  • Zelig's avatar
    配置中心 · 2f56f4a9
    Zelig committed 2018-03-18 16:18:09 +0800
    2f56f4a9 Browse Directory
Config.php 364 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Config extends CI_Controller {
    public function index()
    {
        $this->load->view('config/index');
    }

    public function add()
    {
        $this->load->view('config/add');
    }

    public function edit($id = null)
    {
        $this->load->view('config/add');
    }
}