A set of plugins to help on managing geographic information

This commit is contained in:
ahwelp
2023-01-24 20:41:37 +00:00
parent 616a97f16c
commit a60cfcec3a
61 changed files with 7895 additions and 0 deletions
+111
View File
@@ -0,0 +1,111 @@
<?php
namespace App\Geo\Params;
use \App\Core\Template\Output as Output;
use \App\Geo\Params\Classes\Params as Params;
class ParamsController {
/**
* Index
* Show the main Params list
*/
function index(){
Output::setView('index');
$list = Array();
for($i = 0; $i <= 10; $i++){
$obj = Array();
$obj['id'] = $i;
$obj['value'] = md5($i);
$obj['description'] = sha1($i);
$list[] = $obj;
}
Output::addValue('list', $list );
Output::render();
}
/**
* Create
*
* Render the main Params formulary
*/
function create(){
Output::setView('form', ['id' => 0]);
Output::render();
}
/**
* Store
*
* Store the param on the database
* @param Params $params
*/
function store(Params $params){
}
/**
* Search
*
* Store the param on the database
* @param Params $params
*/
function search(){
}
/**
* Show
*
* Render one register
*
* @param Params $params
*/
function show(Params $params){
}
/**
* Edit
*
* Render the formular for a database Params
*
* @param Params $params
*/
function edit(Params $params){
Output::setView('form', $params);
Output::render();
}
/**
* Update
* Store the changes of the param on the database
*
* @param Params $params
*/
function update(Params $params){
}
/**
* Destroy
* If the object has soft delete.
*
* @param Params $params
*/
function destroy(Params $params){
}
/**
* Purge
* Remove object even with soft delete.
*
* @param Params $params
*/
function purge(Params $params){
}
}