mentors

mentors Commit Details


Date:2014-06-26 20:29:16 (11 years 2 months ago)
Author:Right Or Wrong
Branch:develop
Commit:d48ec0c882cd6c9950041c7eda5ebfb10f1ace3b
Parents: ca3414a452d786246ad30e5b17c393d8a39043ab
Message:redesigned tables for users roles and references

Changes:

File differences

app/controllers/UserController.php
55
66
77
8
8
99
1010
1111
1212
1313
14
15
14
15
1616
1717
1818
......
2626
2727
2828
29
30
31
32
33
2934
30
31
32
33
34
3535
36
37
38
39
40
4136
4237
4338
44
39
40
41
42
4543
4644
4745
......
5654
5755
5856
59
57
6058
6159
6260
......
6866
6967
7068
71
69
7270
7371
7472
......
9189
9290
9391
94
92
9593
9694
9795
......
103101
104102
105103
106
104
107105
108106
109107
{
public function create()
{
return View::make('mentors.create');
return View::make('users.create');
}
public function store()
{
$rules = array(
'firstname' => 'required|min:3',
'lastname' => 'required|min:3',
'first' => 'required|min:3',
'last' => 'required|min:3',
'email' => 'required|email',
'password' => 'required|alphaNum|min:3'
);
->withInput(Input::except('password'));
} else
{
$user = User::firstOrCreate(
array('first' => Input::get('first'),
'last' => Input::get('last'),
'email' => Input::get('email'),
'password' => Hash::make(\Input::get('password'))));
//note-to-self: convert to use firstOrCreate(array())
$firstname = Input::get('firstname');
$lastname = Input::get('lastname');
$email = Input::get('email');
$password = Input::get('password');
$user = new User;
$user->firstname = $firstname;
$user->lastname = $lastname;
$user->email = $email;
$user->password = Hash::make($password);
if($user->save())
{
return Redirect::to('users/group')->with('success', 'You have successfully registered');
$user_id = $user->id;
return Redirect::to('users/group')->with('success', 'You have successfully registered')
->with('id', $user_id);
}else
{
return \Redirect::to('users/create')->with('errors', 'Something terrible happened');
*/
public function chooseGroup()
{
return View::make('mentors.group')->with('id', array());
return View::make('users.group')->with('id', array());
}
/**
{
$user = User::find($id);
return View::make('mentors.complete', array('user' => $user));
return View::make('users.complete', array('user' => $user));
}
/**
{
$user = User::find($id);
return View::make('mentors.profile', array('user' => $user));
return View::make('users.profile', array('user' => $user));
}
public function edit($id)
{
$user = User::find($id);
return View::make('mentors.edit', array('user' => $user));
return View::make('users.edit', array('user' => $user));
}
app/database/migrations/2014_06_24_025956_create_user_table.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUserTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function(Blueprint $table)
{
$table->increments('id');
$table->string('firstname', 32);
$table->string('lastname', 32);
$table->string('email', 32);
$table->string('password', 64);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
}
}
app/database/migrations/2014_06_24_031127_alter_user_table_add_token.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AlterUserTableAddToken extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::table('users', function(Blueprint $table)
{
$table->string('remember_token', 100)->after('password')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
DB::table('users', function(Blueprint $table)
{
$table->dropColumn('remember_token');
});
}
}
app/database/migrations/2014_06_24_040438_make_user_email_unique.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class MakeUserEmailUnique extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::table('users', function(Blueprint $table)
{
$table->unique('email');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
DB::table('users', function(Blueprint $table)
{
$table->dropUnique('email');
});
}
}
app/database/migrations/2014_06_24_042016_create_password_reminders_table.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePasswordRemindersTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('password_reminders', function(Blueprint $table)
{
$table->string('email')->index();
$table->string('token')->index();
$table->timestamp('created_at');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('password_reminders');
}
}
app/database/migrations/2014_06_26_051519_create_mentors_table.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateMentorsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('mentors', function(Blueprint $table)
{
$table->increments('id');
})
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('mentors');
}
}
app/database/migrations/2014_06_26_051534_create_mentees_table.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateMenteesTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('mentees', function(Blueprint $table)
{
$table->increments('id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('mentees');
}
}
app/database/migrations/2014_06_26_234302_create_mc_user_table.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateMcUserTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function(Blueprint $table)
{
$table->increments('id');
$table->string('first', 32);
$table->string('last', 32);
$table->string('email', 100);
$table->unique('email');
$table->string('password', 64);
$table->string('remember_token', 100)->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
}
}
app/database/migrations/2014_06_26_235750_create_mc_role_table.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateMcRoleTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('roles', function(Blueprint $table)
{
$table->increments('id');
$table->string('name', 32);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('roles');
}
}
app/database/migrations/2014_06_27_002502_create_password_reminders_table.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePasswordRemindersTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('password_reminders', function(Blueprint $table)
{
$table->string('email')->index();
$table->string('token')->index();
$table->timestamp('created_at');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('password_reminders');
}
}
app/database/migrations/2014_06_27_003343_create_user_xref_role_table.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUserXrefRoleTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('user_xref_role', function(Blueprint $table)
{
$table->increments('id');
$table->integer('user_id');
$table->integer('role_id');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('user_xref_role');
}
}
app/database/seeds/DatabaseSeeder.php
1212
1313
1414
15
1516
1617
1718
Eloquent::unguard();
$this->call('UserTableSeeder');
$this->call('RoleTableSeeder');
}
}
app/database/seeds/RoleTableSeeder.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
class RoleTableSeeder extends Seeder
{
public function run()
{
DB::table('roles')->delete();
Role::create(array(
'name' => 'Mentor'
));
Role::create(array(
'name' => 'Mentee'
));
}
}
app/database/seeds/UserTableSeeder.php
77
88
99
10
11
10
11
1212
1313
1414
DB::table('users')->delete();
User::create(array(
'firstname' => 'Elisha',
'lastname' => 'Chirchir',
'first' => 'Elisha',
'last' => 'Chirchir',
'email' => 'elisha.java@gmail.com',
'password' => Hash::make('admin')
));
app/models/Role.php
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/**
* This class manages the Roles in the application
* A role could be a mentor or mentee or both
*/
class Role extends \Eloquent
{
protected $table = 'roles';
protected $fillable = array('name');
}
app/models/User.php
1212
1313
1414
15
15
1616
1717
1818
* @var string
*/
protected $table = 'users';
protected $fillable = array('firstname', 'lastname', 'email', 'password');
protected $fillable = array('first', 'last', 'email', 'password');
/**
* The attributes excluded from the model's JSON form.
app/models/UserXrefRole.php
1
2
3
4
5
6
7
8
<?php
class UserXrefROle extends \Eloquent
{
protected $table = 'user_xref_role';
protected $fillable = array('user_id', 'role_id');
}
app/views/mentors/complete.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mentconnect Inc - Profile</title>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
{{HTML::style('css/mentconnect.css')}}
</head>
<body>
<header id="cta" class="background-showcase">
<div id="nv" class="navbar">
<div class="container">
<a class="navbar-brand" href="/">
<div class="asset logo-white-header">
{{ HTML::image("images/mentconnect.png", "editor", array("width" => "130px", "height" => "44px")) }}
</div>
</a>
<ul class=" nav navbar-nav pull-right">
<li class>
{{HTML::link('partners', 'Partners') }}
</li>
<li class>
{{HTML::link('blog', 'Blog') }}
</li>
<li class="button">
{{HTML::link('login', 'Sign In') }}
</li>
</ul>
</div>
</div>
</header>
<div id="signup-content">
{{ Form::open(array('url' => 'users/store', 'class' => 'form-horizontal')) }}
<div class="container padded">
<div class="container">
<legend><h2>Complete Your Profile</h2></legend>
</div>
<div class="row">
<div class="col-lg-8">
<div class="form-group">
<label for="firstname">First Name</label>
{{Form::text('firstname', \Input::old('firstname'), array('class' => 'form-control form-control-bordered', 'tabindex' => '1'))}} <span class="pull-right">{{$errors->first('firstname')}}</span>
</div>
<div class="form-group">
<label for="lastname">Last Name</label>
{{ Form::text('lastname', \Input::old('lastname'), array('class' => 'form-control form-control-bordered', 'tabindex' => '2')) }} <span class="pull-right"> {{$errors->first('lastname')}}</span>
</div>
<div class="form-group">
<label for="email">Email</label>
{{ Form::email('email', \Input::old('email'), array('class' => 'form-control form-control-bordered',
'tabindex' => '3')) }}<span class="pull-right"> {{$errors->first('email') }}</span>
</div>
<div class="form-group">
<label for="title">Title</label>
{{ Form::text('title', \Input::old('title'), array('class' => 'form-control form-control-bordered',
'tabindex' => '4')) }}<span class="pull-right"> {{$errors->first('email') }}</span>
</div>
<div class="form-group">
<label for="email">Location</label>
{{ Form::text('location', \Input::old('location'), array('class' => 'form-control form-control-bordered',
'tabindex' => '5')) }}<span class="pull-right"> {{$errors->first('location') }}</span>
</div>
<div class="row" id="signup-bottom-row">
<div class="col-lg-3">
{{Form::submit('Complete!', array('class' => 'btn btn-success btn-large submit-button'))}}
<br /><br />
</div>
</div>
</div>
<div class="col-lg-4">
</div>
</div>
</div>
{{ Form::close() }}
</div>
<div class="container padded"></div>
<div class="container"></div>
<div id="sub-footer">
<div class="container">
<div class="row">
<div class="col-lg-4">
<p id="copyright-section">
Copyright &copy; 2014. Mentconnect Inc. All Rights Reserved.
</p>
</div>
<div class="col-lg-4">
</div>
<div class="col-lg-4">
<p id="love">
Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
app/views/mentors/create.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mentconnect Inc</title>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
{{HTML::style('css/mentconnect.css')}}
</head>
<body>
<header id="cta" class="background-showcase">
<div id="nv" class="navbar">
<div class="container">
<a class="navbar-brand" href="/">
<div class="asset logo-white-header">
{{ HTML::image("images/mentconnect.png", "editor", array("width" => "130px", "height" => "44px")) }}
</div>
</a>
<ul class=" nav navbar-nav pull-right">
<li class>
{{HTML::link('partners', 'Partners') }}
</li>
<li class>
{{HTML::link('blog', 'Blog') }}
</li>
<li class="button">
{{HTML::link('login', 'Sign In') }}
</li>
</ul>
</div>
</div>
</header>
<div id="signup-content">
{{ Form::open(array('url' => 'users/store', 'class' => 'form-horizontal')) }}
<div class="container padded">
<div class="container">
<legend><h2>Sign Up For A Mentconnect Account</h2></legend>
</div>
<div class="row">
<div class="col-lg-3 col-lg-offset-1">
<h3>Be part of the change!</h3>
<p>Learn from experts who care to share. When you are ready, be free to give back by sharing your skills with others.</p>
</div>
<div class="col-lg-8">
<div class="form-group">
<label for="firstname">First Name</label>
{{Form::text('firstname', \Input::old('firstname'), array('class' => 'form-control form-control-bordered', 'tabindex' => '1'))}} <span class="pull-right">{{$errors->first('firstname')}}</span>
</div>
<div class="form-group">
<label for="lastname">Last Name</label>
{{ Form::text('lastname', \Input::old('lastname'), array('class' => 'form-control form-control-bordered', 'tabindex' => '2')) }} <span class="pull-right"> {{$errors->first('lastname')}}</span>
</div>
<div class="form-group">
<label for="email">Email</label>
{{ Form::email('email', \Input::old('email'), array('class' => 'form-control form-control-bordered',
'tabindex' => '3')) }}<span class="pull-right"> {{$errors->first('email') }}</span>
</div>
<div class="form-group">
<label for="password">Password</label>
{{Form::password('password', array('class' => 'form-control form-control-bordered', 'tabindex' => '4'))}} <span class="pull-right"> {{$errors->first('password') }}</span>
</div>
<div class="row" id="signup-bottom-row">
<div class="col-lg-3">
{{Form::submit('Sign Me Up!', array('class' => 'btn btn-success btn-large submit-button'))}}
<br /><br />
</div>
<div class="col-lg-5">
By clicking "Sign Me Up" you agree to our
{{HTML::link('tos', 'Terms of Service') }} and {{HTML::link('privacy', 'Privacy Policy.')}}
</div>
</div>
</div>
</div>
</div>
{{ Form::close() }}
</div>
<div class="container padded"></div>
<div class="container"></div>
<div id="sub-footer">
<div class="container">
<div class="row">
<div class="col-lg-4">
<p id="copyright-section">
Copyright &copy; 2014. Mentconnect Inc. All Rights Reserved.
</p>
</div>
<div class="col-lg-4">
</div>
<div class="col-lg-4">
<p id="love">
Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
app/views/mentors/group.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mentconnect Inc - Profile</title>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
{{HTML::style('css/mentconnect.css')}}
</head>
<body>
<header id="cta" class="background-showcase">
<div id="nv" class="navbar">
<div class="container">
<a class="navbar-brand" href="/">
<div class="asset logo-white-header">
{{ HTML::image("images/mentconnect.png", "editor", array("width" => "130px", "height" => "44px")) }}
</div>
</a>
<ul class=" nav navbar-nav pull-right">
<li class>
{{HTML::link('partners', 'Partners') }}
</li>
<li class>
{{HTML::link('blog', 'Blog') }}
</li>
<li class="button">
{{HTML::link('logout', 'Logout') }}
</li>
</ul>
</div>
</div>
</header>
<div id="signup-content">
<div class="container padded">
<div class="container">
<legend><h2>Complete Your Profile</h2></legend>
</div>
<div class="row">
<div class="container">
<p class="center-feature-sub-content">Please use the buttons below to select your category; if you would like to be a Mentor
to someone who is new to your area of expertise, select the <strong>Be a Mentor</strong> button
and if you would like to find a mentor who will help you through your learning curve,
then select the <strong>Be a Mentee</strong> button to complete your profile respectively.
Welcome to <strong>Mentconnect!</strong></p>
</p>
</div>
</div>
<hr />
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="page-header"><h1>mentor - <small>someone who teaches or gives help and advice to a less experienced and often younger person.(a friend of Odysseus entrusted with the education of Odysseus' son Telemachus)</small></h1></div>
<p id="button-row">
{{ HTML::link('mentors/create', 'Become a Mentor', array('class' => 'btn btn-large btn-primary proxima-bold')) }}
</p>
</div>
<div class="col-lg-6">
<div class="page-header"><h1>mentee - <small>a less experienced person (protege) who is offered special guidance and support by a respected and trusted person with more experience (a mentor)</small></h1></div>
<p id="button-row">
{{ HTML::link('mentees/create', 'Become a Mentee', array('class' => 'btn btn-large btn-primary proxima-bold')) }}
</p>
</div>
</div>
</div>
</div>
</div>
<div class="container padded"></div>
<div class="container"></div>
<br /><br />
<div id="sub-footer">
<div class="container">
<div class="row">
<div class="col-lg-4">
<p id="copyright-section">
Copyright &copy; 2014. Mentconnect Inc. All Rights Reserved.
</p>
</div>
<div class="col-lg-4">
</div>
<div class="col-lg-4">
<p id="love">
Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
app/views/mentors/index.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Laravel PHP Framework</title>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
{{HTML::style('css/mentconnect.css')}}
</head>
<body>
<header id="cta" class="background-showcase">
<div id="nv" class="navbar">
<div class="container">
<a class="navbar-brand" href="/">
<div class="asset logo-white-header">
{{ HTML::image("images/mentconnect.png", "editor", array("width" => "130px", "height" => "44px")) }}
</div>
</a>
<ul class=" nav navbar-nav pull-right">
<li class>
{{HTML::link('partners', 'Partners') }}
</li>
<li class>
{{HTML::link('blog', 'Blog') }}
</li>
<li class="button">
{{HTML::link('login', 'Sign In') }}
</li>
</ul>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6">
<h1>Get Matched With a Mentor
or Be a Mentor To Someone Today.</h1>
<p class="lead">
Learning to program can be a daunting task
especially if you have no one to help you. It doesn't have to be that way.
That is why I started <strong>mentconnect</strong>.
</p>
<p id="button-row">
{{ HTML::link('register', 'Join Now', array('class' => 'btn btn-large btn-primary proxima-bold')) }}
</p>
</div>
<div class="col-lg-6">
</div>
</div>
</div>
</header>
<div id="main">
<div class="container padded">
<div id="feature-screenshot">
<h2>Rethinking the learning process had to be done.</h2>
<p class="center-feature-sub-content">
Cut down on the amount of time you waste looking in the wrong places.
Get your questions answered by the right mentor at the right time.
Above all, get the correct advice when you need it most and finally Learn. Having a mentor go through the journey with you is the difference between success and failure - most of the time.
</p>
<hr />
<div id="three-points-area" class="row">
<div class="col-lg-4">
<div class="asset image-builder-build"></div>
<h3>Get Matched</h3>
<p class="three-point-body-text">
Once you register, we automatically match you with a mentor (if you are looking for one) and if no mentor is available, we add your account to the queue in the order your account was created.
</p>
</div>
<div class="col-lg-4">
<div class="asset image-builder-code"></div>
<h3>Learn To Code</h3>
<p class="three-point-body-text">
Once you are matched with an experienced mentor, you will start learning with their guidance. Get your questions answered. Contact them when you need help and save yourself a lot of time learning.
</p>
</div>
<div class="col-lg-4">
<div class="asset image-builder-deploy"></div>
<h3>Be a Mentor</h3>
<p class="three-point-body-text">
When you have learned what you need, you get an opportunity to be .. you guessed it, a mentor to someone else. This is simply a way of giving back to the community and continue learning new skills.
</p>
</div>
</div>
</div>
</div>
</div>
<div id="sub-footer">
<div class="container">
<div class="row">
<div class="col-lg-4">
<p id="copyright-section">
Copyright &copy; 2014. All Rights Reserved.
</p>
</div>
<div class="col-lg-4">
{{HTML::image('images/mentconnect.png', "logo", array('width' => '140px', 'height' => '50px'))}}
</div>
<div class="col-lg-4">
<p id="love">
Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
app/views/mentors/profile.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Laravel PHP Framework</title>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
{{HTML::style('css/mentconnect.css')}}
</head>
<body>
<header id="cta" class="background-showcase">
<div id="nv" class="navbar">
<div class="container">
<a class="navbar-brand" href="/">
<div class="asset logo-white-header">
{{ HTML::image("images/mentconnect.png", "editor", array("width" => "130px", "height" => "44px")) }}
</div>
</a>
<ul class=" nav navbar-nav pull-right">
<li class>
{{HTML::link('partners', 'Partners') }}
</li>
<li class>
{{HTML::link('blog', 'Blog') }}
</li>
<li class="button">
{{HTML::link('login', 'Sign In') }}
</li>
</ul>
</div>
</div>
</header>
<div id="sub-footer">
<div class="container">
<div class="row">
<div class="col-lg-4">
<p id="copyright-section">
Copyright &copy; 2014. All Rights Reserved.
</p>
</div>
<div class="col-lg-4">
{{HTML::image('images/mentconnect.png', "logo", array('width' => '140px', 'height' => '50px'))}}
</div>
<div class="col-lg-4">
<p id="love">
Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
app/views/users/complete.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mentconnect Inc - Profile</title>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
{{HTML::style('css/mentconnect.css')}}
</head>
<body>
<header id="cta" class="background-showcase">
<div id="nv" class="navbar">
<div class="container">
<a class="navbar-brand" href="/">
<div class="asset logo-white-header">
{{ HTML::image("images/mentconnect.png", "editor", array("width" => "130px", "height" => "44px")) }}
</div>
</a>
<ul class=" nav navbar-nav pull-right">
<li class>
{{HTML::link('partners', 'Partners') }}
</li>
<li class>
{{HTML::link('blog', 'Blog') }}
</li>
<li class="button">
{{HTML::link('login', 'Sign In') }}
</li>
</ul>
</div>
</div>
</header>
<div id="signup-content">
{{ Form::open(array('url' => 'users/store', 'class' => 'form-horizontal')) }}
<div class="container padded">
<div class="container">
<legend><h2>Complete Your Profile</h2></legend>
</div>
<div class="row">
<div class="col-lg-8">
<div class="form-group">
<label for="firstname">First Name</label>
{{Form::text('firstname', \Input::old('firstname'), array('class' => 'form-control form-control-bordered', 'tabindex' => '1'))}} <span class="pull-right">{{$errors->first('firstname')}}</span>
</div>
<div class="form-group">
<label for="lastname">Last Name</label>
{{ Form::text('lastname', \Input::old('lastname'), array('class' => 'form-control form-control-bordered', 'tabindex' => '2')) }} <span class="pull-right"> {{$errors->first('lastname')}}</span>
</div>
<div class="form-group">
<label for="email">Email</label>
{{ Form::email('email', \Input::old('email'), array('class' => 'form-control form-control-bordered',
'tabindex' => '3')) }}<span class="pull-right"> {{$errors->first('email') }}</span>
</div>
<div class="form-group">
<label for="title">Title</label>
{{ Form::text('title', \Input::old('title'), array('class' => 'form-control form-control-bordered',
'tabindex' => '4')) }}<span class="pull-right"> {{$errors->first('email') }}</span>
</div>
<div class="form-group">
<label for="email">Location</label>
{{ Form::text('location', \Input::old('location'), array('class' => 'form-control form-control-bordered',
'tabindex' => '5')) }}<span class="pull-right"> {{$errors->first('location') }}</span>
</div>
<div class="row" id="signup-bottom-row">
<div class="col-lg-3">
{{Form::submit('Complete!', array('class' => 'btn btn-success btn-large submit-button'))}}
<br /><br />
</div>
</div>
</div>
<div class="col-lg-4">
</div>
</div>
</div>
{{ Form::close() }}
</div>
<div class="container padded"></div>
<div class="container"></div>
<div id="sub-footer">
<div class="container">
<div class="row">
<div class="col-lg-4">
<p id="copyright-section">
Copyright &copy; 2014. Mentconnect Inc. All Rights Reserved.
</p>
</div>
<div class="col-lg-4">
</div>
<div class="col-lg-4">
<p id="love">
Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
app/views/users/create.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mentconnect Inc</title>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
{{HTML::style('css/mentconnect.css')}}
</head>
<body>
<header id="cta" class="background-showcase">
<div id="nv" class="navbar">
<div class="container">
<a class="navbar-brand" href="/">
<div class="asset logo-white-header">
{{ HTML::image("images/mentconnect.png", "editor", array("width" => "130px", "height" => "44px")) }}
</div>
</a>
<ul class=" nav navbar-nav pull-right">
<li class>
{{HTML::link('partners', 'Partners') }}
</li>
<li class>
{{HTML::link('blog', 'Blog') }}
</li>
<li class="button">
{{HTML::link('login', 'Sign In') }}
</li>
</ul>
</div>
</div>
</header>
<div id="signup-content">
{{ Form::open(array('url' => 'users/store', 'class' => 'form-horizontal')) }}
<div class="container padded">
<div class="container">
<legend><h2>Sign Up For A Mentconnect Account</h2></legend>
</div>
<div class="row">
<div class="col-lg-3 col-lg-offset-1">
<h3>Be part of the change!</h3>
<p>Learn from experts who care to share. When you are ready, be free to give back by sharing your skills with others.</p>
</div>
<div class="col-lg-8">
<div class="form-group">
<label for="first">First Name</label>
{{Form::text('first', \Input::old('first'), array('class' => 'form-control form-control-bordered', 'tabindex' => '1'))}} <span class="pull-right">{{$errors->first('first')}}</span>
</div>
<div class="form-group">
<label for="last">Last Name</label>
{{ Form::text('last', \Input::old('last'), array('class' => 'form-control form-control-bordered', 'tabindex' => '2')) }} <span class="pull-right"> {{$errors->first('last')}}</span>
</div>
<div class="form-group">
<label for="email">Email</label>
{{ Form::email('email', \Input::old('email'), array('class' => 'form-control form-control-bordered',
'tabindex' => '3')) }}<span class="pull-right"> {{$errors->first('email') }}</span>
</div>
<div class="form-group">
<label for="password">Password</label>
{{Form::password('password', array('class' => 'form-control form-control-bordered', 'tabindex' => '4'))}} <span class="pull-right"> {{$errors->first('password') }}</span>
</div>
<div class="row" id="signup-bottom-row">
<div class="col-lg-3">
{{Form::submit('Sign Me Up!', array('class' => 'btn btn-success btn-large submit-button'))}}
<br /><br />
</div>
<div class="col-lg-5">
By clicking "Sign Me Up" you agree to our
{{HTML::link('tos', 'Terms of Service') }} and {{HTML::link('privacy', 'Privacy Policy.')}}
</div>
</div>
</div>
</div>
</div>
{{ Form::close() }}
</div>
<div class="container padded"></div>
<div class="container"></div>
<div id="sub-footer">
<div class="container">
<div class="row">
<div class="col-lg-4">
<p id="copyright-section">
Copyright &copy; 2014. Mentconnect Inc. All Rights Reserved.
</p>
</div>
<div class="col-lg-4">
</div>
<div class="col-lg-4">
<p id="love">
Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
app/views/users/group.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mentconnect Inc - Profile</title>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
{{HTML::style('css/mentconnect.css')}}
</head>
<body>
<header id="cta" class="background-showcase">
<div id="nv" class="navbar">
<div class="container">
<a class="navbar-brand" href="/">
<div class="asset logo-white-header">
{{ HTML::image("images/mentconnect.png", "editor", array("width" => "130px", "height" => "44px")) }}
</div>
</a>
<ul class=" nav navbar-nav pull-right">
<li class>
{{HTML::link('partners', 'Partners') }}
</li>
<li class>
{{HTML::link('blog', 'Blog') }}
</li>
<li class="button">
{{HTML::link('logout', 'Logout') }}
</li>
</ul>
</div>
</div>
</header>
<div id="signup-content">
<div class="container padded">
<div class="container">
<legend><h2>Complete Your Profile</h2></legend>
</div>
<div class="row">
<div class="container">
<p class="center-feature-sub-content">Please use the buttons below to select your category; if you would like to be a Mentor
to someone who is new to your area of expertise, select the <strong>Be a Mentor</strong> button
and if you would like to find a mentor who will help you through your learning curve,
then select the <strong>Be a Mentee</strong> button to complete your profile respectively.
Welcome to <strong>Mentconnect!</strong></p>
</p>
</div>
</div>
<hr />
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="page-header"><h1>mentor - <small>someone who teaches or gives help and advice to a less experienced and often younger person.(a friend of Odysseus entrusted with the education of Odysseus' son Telemachus)</small></h1></div>
<p id="button-row">
{{ HTML::link('mentors/create', 'Become a Mentor', array('class' => 'btn btn-large btn-primary proxima-bold')) }}
</p>
</div>
<div class="col-lg-6">
<div class="page-header"><h1>mentee - <small>a less experienced person (protege) who is offered special guidance and support by a respected and trusted person with more experience (a mentor)</small></h1></div>
<p id="button-row">
{{ HTML::link('mentees/create', 'Become a Mentee', array('class' => 'btn btn-large btn-primary proxima-bold')) }}
</p>
</div>
</div>
</div>
</div>
</div>
<div class="container padded"></div>
<div class="container"></div>
<br /><br />
<div id="sub-footer">
<div class="container">
<div class="row">
<div class="col-lg-4">
<p id="copyright-section">
Copyright &copy; 2014. Mentconnect Inc. All Rights Reserved.
</p>
</div>
<div class="col-lg-4">
</div>
<div class="col-lg-4">
<p id="love">
Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
app/views/users/index.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Laravel PHP Framework</title>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
{{HTML::style('css/mentconnect.css')}}
</head>
<body>
<header id="cta" class="background-showcase">
<div id="nv" class="navbar">
<div class="container">
<a class="navbar-brand" href="/">
<div class="asset logo-white-header">
{{ HTML::image("images/mentconnect.png", "editor", array("width" => "130px", "height" => "44px")) }}
</div>
</a>
<ul class=" nav navbar-nav pull-right">
<li class>
{{HTML::link('partners', 'Partners') }}
</li>
<li class>
{{HTML::link('blog', 'Blog') }}
</li>
<li class="button">
{{HTML::link('login', 'Sign In') }}
</li>
</ul>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6">
<h1>Get Matched With a Mentor
or Be a Mentor To Someone Today.</h1>
<p class="lead">
Learning to program can be a daunting task
especially if you have no one to help you. It doesn't have to be that way.
That is why I started <strong>mentconnect</strong>.
</p>
<p id="button-row">
{{ HTML::link('register', 'Join Now', array('class' => 'btn btn-large btn-primary proxima-bold')) }}
</p>
</div>
<div class="col-lg-6">
</div>
</div>
</div>
</header>
<div id="main">
<div class="container padded">
<div id="feature-screenshot">
<h2>Rethinking the learning process had to be done.</h2>
<p class="center-feature-sub-content">
Cut down on the amount of time you waste looking in the wrong places.
Get your questions answered by the right mentor at the right time.
Above all, get the correct advice when you need it most and finally Learn. Having a mentor go through the journey with you is the difference between success and failure - most of the time.
</p>
<hr />
<div id="three-points-area" class="row">
<div class="col-lg-4">
<div class="asset image-builder-build"></div>
<h3>Get Matched</h3>
<p class="three-point-body-text">
Once you register, we automatically match you with a mentor (if you are looking for one) and if no mentor is available, we add your account to the queue in the order your account was created.
</p>
</div>
<div class="col-lg-4">
<div class="asset image-builder-code"></div>
<h3>Learn To Code</h3>
<p class="three-point-body-text">
Once you are matched with an experienced mentor, you will start learning with their guidance. Get your questions answered. Contact them when you need help and save yourself a lot of time learning.
</p>
</div>
<div class="col-lg-4">
<div class="asset image-builder-deploy"></div>
<h3>Be a Mentor</h3>
<p class="three-point-body-text">
When you have learned what you need, you get an opportunity to be .. you guessed it, a mentor to someone else. This is simply a way of giving back to the community and continue learning new skills.
</p>
</div>
</div>
</div>
</div>
</div>
<div id="sub-footer">
<div class="container">
<div class="row">
<div class="col-lg-4">
<p id="copyright-section">
Copyright &copy; 2014. All Rights Reserved.
</p>
</div>
<div class="col-lg-4">
{{HTML::image('images/mentconnect.png', "logo", array('width' => '140px', 'height' => '50px'))}}
</div>
<div class="col-lg-4">
<p id="love">
Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
app/views/users/profile.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Laravel PHP Framework</title>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
{{HTML::style('css/mentconnect.css')}}
</head>
<body>
<header id="cta" class="background-showcase">
<div id="nv" class="navbar">
<div class="container">
<a class="navbar-brand" href="/">
<div class="asset logo-white-header">
{{ HTML::image("images/mentconnect.png", "editor", array("width" => "130px", "height" => "44px")) }}
</div>
</a>
<ul class=" nav navbar-nav pull-right">
<li class>
{{HTML::link('partners', 'Partners') }}
</li>
<li class>
{{HTML::link('blog', 'Blog') }}
</li>
<li class="button">
{{HTML::link('login', 'Sign In') }}
</li>
</ul>
</div>
</div>
</header>
<div id="sub-footer">
<div class="container">
<div class="row">
<div class="col-lg-4">
<p id="copyright-section">
Copyright &copy; 2014. All Rights Reserved.
</p>
</div>
<div class="col-lg-4">
{{HTML::image('images/mentconnect.png', "logo", array('width' => '140px', 'height' => '50px'))}}
</div>
<div class="col-lg-4">
<p id="love">
Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
vendor/autoload.php
44
55
66
7
7
require_once __DIR__ . '/composer' . '/autoload_real.php';
return ComposerAutoloaderInitcc44ad94c42a7f79fc06f2339ab26405::getLoader();
return ComposerAutoloaderInit58ede9d7d52a7453cb838add7f15cf28::getLoader();
vendor/composer/autoload_classmap.php
66
77
88
9
109
1110
1211
......
2928
3029
3130
32
33
34
35
31
32
33
34
3635
3736
3837
......
405404
406405
407406
408
409407
410408
411409
......
935933
936934
937935
936
937
938938
939939
940940
......
15221522
15231523
15241524
1525
15251526
15261527
15271528
$baseDir = dirname($vendorDir);
return array(
'AlterUserTableAddToken' => $baseDir . '/app/database/migrations/2014_06_24_031127_alter_user_table_add_token.php',
'BaseController' => $baseDir . '/app/controllers/BaseController.php',
'Boris\\Boris' => $vendorDir . '/d11wtq/boris/lib/Boris/Boris.php',
'Boris\\CLIOptionsHandler' => $vendorDir . '/d11wtq/boris/lib/Boris/CLIOptionsHandler.php',
'ClassPreloader\\Parser\\DirVisitor' => $vendorDir . '/classpreloader/classpreloader/src/ClassPreloader/Parser/DirVisitor.php',
'ClassPreloader\\Parser\\FileVisitor' => $vendorDir . '/classpreloader/classpreloader/src/ClassPreloader/Parser/FileVisitor.php',
'ClassPreloader\\Parser\\NodeTraverser' => $vendorDir . '/classpreloader/classpreloader/src/ClassPreloader/Parser/NodeTraverser.php',
'CreateMenteesTable' => $baseDir . '/app/database/migrations/2014_06_26_051534_create_mentees_table.php',
'CreateMentorsTable' => $baseDir . '/app/database/migrations/2014_06_26_051519_create_mentors_table.php',
'CreatePasswordRemindersTable' => $baseDir . '/app/database/migrations/2014_06_24_042016_create_password_reminders_table.php',
'CreateUserTable' => $baseDir . '/app/database/migrations/2014_06_24_025956_create_user_table.php',
'CreateMcRoleTable' => $baseDir . '/app/database/migrations/2014_06_26_235750_create_mc_role_table.php',
'CreateMcUserTable' => $baseDir . '/app/database/migrations/2014_06_26_234302_create_mc_user_table.php',
'CreatePasswordRemindersTable' => $baseDir . '/app/database/migrations/2014_06_27_002502_create_password_reminders_table.php',
'CreateUserXrefRoleTable' => $baseDir . '/app/database/migrations/2014_06_27_003343_create_user_xref_role_table.php',
'Crypt_AES' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/AES.php',
'Crypt_Base' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Base.php',
'Crypt_Blowfish' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php',
'Jeremeamia\\SuperClosure\\SerializableClosure' => $vendorDir . '/jeremeamia/SuperClosure/src/Jeremeamia/SuperClosure/SerializableClosure.php',
'Jeremeamia\\SuperClosure\\Visitor\\ClosureFinderVisitor' => $vendorDir . '/jeremeamia/SuperClosure/src/Jeremeamia/SuperClosure/Visitor/ClosureFinderVisitor.php',
'Jeremeamia\\SuperClosure\\Visitor\\MagicConstantVisitor' => $vendorDir . '/jeremeamia/SuperClosure/src/Jeremeamia/SuperClosure/Visitor/MagicConstantVisitor.php',
'MakeUserEmailUnique' => $baseDir . '/app/database/migrations/2014_06_24_040438_make_user_email_unique.php',
'Math_BigInteger' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger.php',
'Monolog\\ErrorHandler' => $vendorDir . '/monolog/monolog/src/Monolog/ErrorHandler.php',
'Monolog\\Formatter\\ChromePHPFormatter' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php',
'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php',
'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php',
'RemindersController' => $baseDir . '/app/controllers/RemindersController.php',
'Role' => $baseDir . '/app/models/Role.php',
'RoleTableSeeder' => $baseDir . '/app/database/seeds/RoleTableSeeder.php',
'SessionController' => $baseDir . '/app/controllers/SessionController.php',
'SessionHandlerInterface' => $vendorDir . '/symfony/http-foundation/Symfony/Component/HttpFoundation/Resources/stubs/SessionHandlerInterface.php',
'Stack\\Builder' => $vendorDir . '/stack/builder/src/Stack/Builder.php',
'User' => $baseDir . '/app/models/User.php',
'UserController' => $baseDir . '/app/controllers/UserController.php',
'UserTableSeeder' => $baseDir . '/app/database/seeds/UserTableSeeder.php',
'UserXrefROle' => $baseDir . '/app/models/UserXrefRole.php',
'Whoops\\Exception\\ErrorException' => $vendorDir . '/filp/whoops/src/Whoops/Exception/ErrorException.php',
'Whoops\\Exception\\Frame' => $vendorDir . '/filp/whoops/src/Whoops/Exception/Frame.php',
'Whoops\\Exception\\FrameCollection' => $vendorDir . '/filp/whoops/src/Whoops/Exception/FrameCollection.php',
vendor/composer/autoload_real.php
22
33
44
5
5
66
77
88
......
1919
2020
2121
22
22
2323
24
24
2525
2626
2727
......
4949
5050
5151
52
52
5353
5454
5555
5656
5757
5858
59
59
6060
6161
6262
// autoload_real.php @generated by Composer
class ComposerAutoloaderInitcc44ad94c42a7f79fc06f2339ab26405
class ComposerAutoloaderInit58ede9d7d52a7453cb838add7f15cf28
{
private static $loader;
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInitcc44ad94c42a7f79fc06f2339ab26405', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit58ede9d7d52a7453cb838add7f15cf28', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInitcc44ad94c42a7f79fc06f2339ab26405', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit58ede9d7d52a7453cb838add7f15cf28', 'loadClassLoader'));
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
$includeFiles = require __DIR__ . '/autoload_files.php';
foreach ($includeFiles as $file) {
composerRequirecc44ad94c42a7f79fc06f2339ab26405($file);
composerRequire58ede9d7d52a7453cb838add7f15cf28($file);
}
return $loader;
}
}
function composerRequirecc44ad94c42a7f79fc06f2339ab26405($file)
function composerRequire58ede9d7d52a7453cb838add7f15cf28($file)
{
require $file;
}

Archive Download the corresponding diff file

Branches

Number of commits:
Page rendered in 0.65615s using 13 queries.