예제 #1
0
 public function edit($id)
 {
     $user = User_Model::current();
     $project = ORM::factory('project', $id);
     if (!$user->loaded && $project->user_can($user, 'edit')) {
         return $this->template->content = 'oh, come on!';
     }
     if ($post = $this->input->post('project')) {
         $validation = Projects_utils::projects_edit_validation($post);
         if (!$project->validate($validation, true)) {
             return $this->template->content = Kohana::debug($validation->errors());
         }
         if ($additional_user_emails = $this->input->post('additional_user_emails')) {
             $additional_user_roles = $this->input->post('additional_user_roles');
             foreach ($additional_user_emails as $email) {
                 Profiles_utils::reserve_email_if_available($email);
             }
             $additional_users = array_combine($additional_user_emails, $additional_user_roles);
             $project->add_user_roles($additional_users);
         }
         url::redirect($project->local_url);
     } else {
         HTMLPage::add_style('forms');
         $this->template->content = View::factory('projects/edit')->bind('project_types', Projects_utils::get_project_types_dropdown_array())->bind('project', $project)->bind('user', $user);
     }
 }
예제 #2
0
 public function profile($id)
 {
     $user = User_Model::current();
     $profile = ORM::factory('user', $id);
     if (!$profile->loaded) {
         $this->template->content = 'user now found';
     }
     $connections = array();
     foreach ($profile->projects as $project) {
         foreach ($project->users as $member) {
             if ($member->id != $profile->id) {
                 $connections[$member->id] = $member;
             }
         }
     }
     $this->template->content = View::factory('profiles/view', compact('profile', 'user', 'connections'));
 }
예제 #3
0
<div id="user-top-menu">
<?php 
$user = User_Model::current();
if (!$user->loaded) {
    ?>
<a id="login" rel="nofollow" href="<?php 
    echo url::site('login');
    ?>
">Login to your account</a>

<?php 
} else {
    ?>

Howdy, <a href="<?php 
    echo $user->local_url;
    ?>
"><?php 
    echo $user;
    ?>
</a>.
<a href="<?php 
    echo url::site('logout');
    ?>
">Logout</a>.
<?php 
}
?>
</div>