Beispiel #1
0
 static function login($user)
 {
     if (identity::is_writable()) {
         $user->login_count += 1;
         $user->last_login = time();
         $user->save();
     }
     identity::set_active_user($user);
     log::info("user", t("User %name logged in", array("name" => $user->name)));
     module::event("user_login", $user);
 }
Beispiel #2
0
 public function show($id)
 {
     // If we get here, then we should have a user id other than guest.
     $user = identity::lookup_user($id);
     if (!$user) {
         throw new Kohana_404_Exception();
     }
     $v = new Theme_View("page.html", "other", "profile");
     $v->page_title = t("%name Profile", array("name" => $user->display_name()));
     $v->content = new View("user_profile.html");
     $v->content->user = $user;
     $v->content->contactable = !$user->guest && $user->id != identity::active_user()->id && $user->email;
     $v->content->editable = identity::is_writable() && !$user->guest && $user->id == identity::active_user()->id;
     $event_data = (object) array("user" => $user, "content" => array());
     module::event("show_user_profile", $event_data);
     $v->content->info_parts = $event_data->content;
     print $v;
 }
Beispiel #3
0
 public function show($id)
 {
     // If we get here, then we should have a user id other than guest.
     $user = identity::lookup_user($id);
     $active_user = identity::active_user();
     $is_current_active = $active_user->id == $id;
     $display_all = $active_user->admin || $is_current_active && !$active_user->guest;
     $v = new Theme_View("page.html", "other", "profile");
     $v->page_title = t("%name Profile", array("name" => $user->display_name()));
     $v->content = new View("user_profile.html");
     // @todo modify user_home to supply a link to their album,
     $v->content->user = $user;
     $v->content->not_current = !$is_current_active;
     $v->content->editable = identity::is_writable() && $display_all;
     $event_data = (object) array("user" => $user, "display_all" => $display_all, "content" => array());
     module::event("show_user_profile", $event_data);
     $v->content->info_parts = $event_data->content;
     print $v;
 }
Beispiel #4
0
        }
        if (data.result == "success") {
          $("#g-dialog").dialog("close");
          window.location.reload();
        }
      }
    });
  };
</script>
<div id="g-login">
  <ul>
    <li id="g-login-form">
      <?php 
echo $form;
?>
    </li>
    <?php 
if (identity::is_writable() && !module::get_var("gallery", "maintenance_mode")) {
    ?>
    <li>
      <a href="#" id="g-password-reset" class="g-right g-text-small"><?php 
    echo t("Forgot your password?");
    ?>
</a>
    </li>
    <?php 
}
?>
  </ul>
</div>
Beispiel #5
0
      success: function(data) {
        if (data.form) {
          $("#g-login form").replaceWith(data.form);
          ajaxify_login_reset_form();
        }
        if (data.result == "success") {
          $("#g-dialog").dialog("close");
          window.location.reload();
        }
      }
    });
  };
</script>
<div id="g-login">
  <ul>
    <li id="g-login-form">
      <?php 
echo $form;
?>
    </li>
    <? if (identity::is_writable()): ?>
    <li>
      <a href="#" id="g-password-reset" class="g-right g-text-small"><?php 
echo t("Forgot your password?");
?>
</a>
    </li>
    <? endif ?>
  </ul>
</div>