function up_position($id, $step = 1) { $o = new store(); $o->get_by_id($id); if (!$o->exists()) { show_404("Không tìm thấy"); } for ($i = 0; $i < $step; $i++) { $o->up_position(); } redirect($this->admin . 'stores/list_all/'); }