39 lines
640 B
PHP
39 lines
640 B
PHP
<?php
|
|
|
|
namespace Admin;
|
|
|
|
class UserController extends \BaseController implements \CRUD
|
|
{
|
|
public function index($f3)
|
|
{
|
|
// TODO: Implement index() method.
|
|
}
|
|
|
|
public function createForm($f3)
|
|
{
|
|
// TODO: Implement createForm() method.
|
|
}
|
|
|
|
public function create($f3)
|
|
{
|
|
// TODO: Implement create() method.
|
|
}
|
|
|
|
public function view($id)
|
|
{
|
|
// TODO: Implement view() method.
|
|
}
|
|
|
|
public function editForm($id)
|
|
{
|
|
// TODO: Implement editForm() method.
|
|
}
|
|
|
|
public function update($id)
|
|
{
|
|
// TODO: Implement update() method.
|
|
}
|
|
|
|
|
|
|
|
} |