Jackson Dou 2 years ago
parent
commit
2b3178cb4e
4 changed files with 12 additions and 17 deletions
  1. 8 15
      README.md
  2. 2 0
      src/core/controllers/news/list.php
  3. 2 0
      src/core/controllers/news/view.php
  4. 0 2
      src/news.php

+ 8 - 15
README.md

@@ -2,8 +2,8 @@
 
 An Open Source Web Hosting Account and Support Management System for MyOwnFreeHost
 
-* Official Site : [uiisc.com](http://uiisc.com "UIISC")
-* Author : [Jackson Dou](https://github.com/jksdou "Jackson Dou")
+- Official Site : [uiisc.com](http://uiisc.com "UIISC")
+- Author : [Jackson Dou](https://github.com/jksdou "Jackson Dou")
 
 ## Functions
 
@@ -12,31 +12,29 @@ An Open Source Web Hosting Account and Support Management System for MyOwnFreeHo
 - [x] Load default language
 - [x] Change language
 
-
 ### ClientArea module
 
 - [x] Account registration
 - [x] Account verification
 - [x] Account cancellation
 - [x] Email verification
-- [x] Login / Logout
 - [x] Profile modification
-- [x] Forget / Reset / Change password
+- [x] Login / Logout, Forget / Reset / Change password
 - [x] Apply for a web hosting account
-- [x] Hosting account deletion / deactivation
-- [x] Login to hosting control panel
+- [x] Web hosting account deletion / deactivation
+- [x] Login to web hosting control panel
 
-### admin module
+### AdminArea module
 
 - [x] Verify if a domain is available
-- [x] Creation of account hosting from the panel
+- [x] Creation of hosting account
 - [x] Change password to hosting account
 - [x] Deactivate or disable a hosting account
 - [x] Activate or enable hosting account
 - [x] Verify how many domain and state of the hosting account
 - [x] Members management
 - [x] Site configuration
-- [ ] API configuration
+- [x] API configuration
 - [x] News management
 - [ ] Translation file management
 
@@ -44,21 +42,16 @@ An Open Source Web Hosting Account and Support Management System for MyOwnFreeHo
 
 - [ ] Add/edit/delete posts
 
-
 ## Screenshot
 
 ##### <u>Solution Page</u>
 
->
 > ![Solution Page](screenshot/solution.png)
 
 ##### <u>Login Page</u>
 
->
 > ![Login Page](screenshot/login.png)
 
 ##### <u>Register Page</u>
 
->
 > ![Register Page](screenshot/register.png)
-

+ 2 - 0
src/core/controllers/news/list.php

@@ -19,3 +19,5 @@ $status_types = array(
     '关闭',
     '打开'
 );
+
+$PageInfo['title'] = 'News List';

+ 2 - 0
src/core/controllers/news/view.php

@@ -19,3 +19,5 @@ if ($id > 0) {
 } else {
     $data = null;
 }
+
+$PageInfo['title'] = 'News Details';

+ 0 - 2
src/news.php

@@ -8,8 +8,6 @@ if (!in_array($action, array('list', 'view'))) {
     $action = 'list';
 }
 
-$PageInfo['title'] = 'News ' . ucfirst($action);
-
 require __DIR__ . '/core/controllers/news/' . $action . '.php';
 require __DIR__ . '/core/views/common/header.php';
 require __DIR__ . '/core/views/common/navbar.php';