Closed (fixed)
Project:
Account menu
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
3 Nov 2010 at 15:15 UTC
Updated:
5 Jul 2020 at 11:59 UTC
Jump to comment: Most recent
What about the status of D7 work? Is this module still needed in D7?
Comments
Comment #1
kika commentedAnybody here? *bump*
Comment #2
xeagle2 commentedIs there any plan to port it to D7?
Comment #3
drwierdo commentedLogintoboggan is the module that you would want to look for D7. it does the same work as this module and then there are other additional functionalities as well
Comment #4
topdillon commentedI just tried LoginToboggan. Where is the "login/rester" link?
Comment #5
drwierdo commentedyou have to go to the configuration option of the login block, there you will find new option to use logintoboggan for the login purpose. Also there is a configuration option for this module (modules>logintoboggan>configuration) where you can set various options. it is one of the most elaborate and most popular login and registration management module for drupal. for more information look at its readme file.
Comment #6
topdillon commentedThere is no such option to all logintoboggan for the login purpose. That is not what I am asking about anyhow. With Account Menu, when not logged in, "login/create account" is presented to user. That is what I am looking for.
Comment #7
drwierdo commentedyou don't need account menu to do that thing. The core login block does the same thing for you. What i have done is I have enabled the core login block and logintoboggan block and placed them in the same region. And i have configured the core login block to show the link (this option is enabled only after installing the logintoboggan module). By default, only login block is shown to an anonymous user, and only logintoboggan block is shown to a logged in user.
The result is that, when an anonymous visitor browses the site, he/she is shown the login/create account link (from the core login block). Once the person logs in, then the login block disappears. Then the logintoboggan block show up in the same region as the login block, showing the profile and logout.
I think what you are NOT doing is going to the structure>block page and enabling the logintoboggan block!!!
Hope this helps
Comment #8
topdillon commentedI have enabled logintoboggan and placed the logintoboggan block in the same region as the core login block. The problem is I get the whole login form in the login block. What I want is just the link to the login page. Is that possible.
Edit: found the solution in the core login block configuration. Select "link." Thanks for your patience.
Comment #9
drwierdo commentedIts all my pleasure....
Comment #10
mattyoung commentedSo dillon, can you provide you solution using core login block here? If all the functionality of this module can be done with core, then I'll not create a D7 port.
Thanks!
From Mt. Emei, China
Comment #11
topdillon commentedI went with D6 in the end, and can't remember my solution.
Comment #12
darrick commentedIf anyone is looking for tips I did:
Enabled the "My account" and "Login" menu items for the main menu.
Implemented in my site module ...
function hook_menu_alter(&$items) {
// Example - disable the page at user
$items['user']['access callback'] = user_is_logged_in;
}
Then installed logintoboggin and checked "Present a unified login/registration page."
Comment #13
portulacaI'm using Menu token module for part of the functionality (username inside link text).
https://drupal.org/project/menu_token
Comment #14
john franklin commentedIn the 7.x-1.x branch.