mentors

mentors Git Source Tree


Root/app/controllers/AdminController.php

<?php

/**
* This is the controller that manages the Admin interface of Mentconnect
*/
class AdminController extends \BaseController
{
	
	public function __construct()
	{
	    $this->beforeFilter('auth');
	}

	public function home()
	{
		return View::make('login');
	}

	public function manageUsers()
	{

	}

	public function viewUser($id)
	{

	}

	public function destroyUser($id)
	{

	}

	public function restoreUser($id)
	{

	}

	public function viewStats()
	{

	}

	public function showContact($id)
	{

	}

	public function contactUser($id)
	{

	}

	public function revokeAccess($id)
	{

	}

	public function showMatches()
	{

	}


}

Archive Download this file

Branches

Number of commits:
Page rendered in 0.10779s using 11 queries.