plugins/geo/admin_modules/yf_manage_cities.class.php
<?php
/**
* Cities management.
*
* @author YFix Team <yfix.dev@gmail.com>
* @version 1.0
*/
class yf_manage_cities
{
// TODO
public function show()
{
return table('SELECT * FROM ' . db('cities')/*, array('id' => 'code')*/)
->text('name')
->text('country')
->text('code')
->text('code3')
->text('num')
->text('cont')
->btn_active()
->btn_edit()
->btn_delete()
->footer_add();
}
public function edit()
{
$a = db()->query_fetch('SELECT * FROM ' . db('cities') . ' WHERE id=' . (int) ($_GET['id']));
if ( ! $a['id']) {
return _e('No id!');
}
$a = $_POST ? $a + $_POST : $a;
return form($a)
->validate(['name' => 'trim|required'])
->db_update_if_ok('cities', ['name', 'active'], 'id=' . $a['id'])
->on_after_update(function () {
cache_del(['cities']);
common()->admin_wall_add(['city updated: ' . $_POST['name'] . '', $a['id']]);
})
->text('name')
->text('country')
->info('code')
->info('code3')
->info('num')
->info('cont')
->active_box()
->save_and_back();
}
public function add()
{
$a = $_POST;
return form($a)
->validate(['name' => 'trim|required'])
->db_insert_if_ok('cities', ['name', 'active'], [])
->on_after_update(function () {
cache_del(['cities']);
common()->admin_wall_add(['city added: ' . $_POST['name'] . '', db()->insert_id()]);
})
->text('name')
->text('country')
->info('code')
->info('code3')
->info('num')
->info('cont')
->active_box()
->save_and_back();
}
public function delete()
{
return _class('admin_methods')->delete(['table' => 'cities']);
}
public function active()
{
return _class('admin_methods')->active(['table' => 'cities']);
}
public function filter_save()
{
return _class('admin_methods')->filter_save();
}
public function _show_filter()
{
if ( ! in_array($_GET['action'], ['show'])) {
return false;
}
$filter_name = $_GET['object'] . '__show';
$r = [
'form_action' => './?object=' . $_GET['object'] . '&action=filter_save&id=' . $filter_name,
'clear_url' => './?object=' . $_GET['object'] . '&action=filter_save&id=' . $filter_name . '&page=clear',
];
$order_fields = [
'code' => 'code',
'name' => 'name',
'native' => 'native',
];
$per_page = ['' => '', 10 => 10, 20 => 20, 50 => 50, 100 => 100, 200 => 200, 500 => 500, 1000 => 1000, 2000 => 2000, 5000 => 5000];
return form($r, [
'selected' => $_SESSION[$filter_name],
'class' => 'form-vertical',
])
->text('name')
->text('native')
->select_box('per_page', $per_page, ['class' => 'input-small'])
->select_box('order_by', $order_fields, ['show_text' => 1, 'class' => 'input-medium'])
->radio_box('order_direction', ['asc' => 'Ascending', 'desc' => 'Descending'], ['horizontal' => 1, 'translate' => 1])
->save_and_clear();
}
/**
* @param mixed $params
*/
public function _hook_widget__cities_list($params = [])
{
// TODO
}
}