Drupal Recipe – Login Destinations Chris Neglia & Lisa Forgan Copyright 2009, Page 1 Solutions LLC.

Slides:



Advertisements
Similar presentations
17 Copyright © 2005, Oracle. All rights reserved. Deploying Applications by Using Java Web Start.
Advertisements

INSTANT PRICE SYSTEM INSTANT PRICING SYSTEM. INSTANT PRICE SYSTEM text.
To book bus ticket kindly use Mozilla Firefox. If bus is canceled kindly mail us on within 48 hours of departure time. Sources Destination.
Extended DISC Online System User Instruction: How to Run a Team Analysis.
Exploring PHP and MySQL Using an Online Travel Agency as a Case Study Charles R. Moen, M.S. Morris M. Liaw, Ph.D. October 9, 2004 ACET 2004.
Hogyan lehet használni az EBSCOadmin-t november 21. Egyetemi Könyvtár Szeged.
FINANCE CLAIMS DISBURSEMENTS. 2 PaySpan Health Getting Started is Easy!  The process starts with an invitation from a payer that includes a registration.
The Dr ü G Book: An Intro to Drupal The Dr ü G Book: An Intro to Drupal (Dr ü G: Drupal User ’ s Group - users, not developers) This is an introduction.
Extended DISC Online System User Instruction: How to Create a New Account.
Delivering Excellence in Software Engineering ® EPAM Systems. All rights reserved. ASP.NET Authentication.
1 ASP.NET SECURITY Presenter: Van Nguyen. 2 Introduction Security is an integral part of any Web-based application. Understanding ASP.NET security will.
Drupal Training Syllabus Chaitanya Lakshmi
P: F: West Main Street, New York, NY | New Face of EIP EIP © 2013 L&T Construction. All rights reserved.
About Dynamic Sites (Front End / Back End Implementations) by Janssen & Associates Affordable Website Solutions for Individuals and Small Businesses.
Relay Online Team Registration Relay Online Makes Registration Easy! Step 1: Sign Up on your Relay Online website Step 2: Start your Relay For Life.
Websitepipeline ™ university Customer Logins.  Customer and Account relationship  How to add Customers to the website.
Drupal Jumpstart Information Systems 337 Prof. Harry Plantinga.
Security Testing Case Study 360logica Software Testing Services.
In the web address box enter Enter your user ID (first and last initial 7 digit ID number) Select Log in.
Blackboard/Connect. Step one This is a one-time procedure.
Information Technology eBook Website First Day of Class Registration Walkthrough.
Proposal for the new group web infrastructure SFT Group meeting 3/7/2009 Yves Perrin.
To Join a Team, click the “Join a Team” button.. Once on the page, click one of the two “Join Team” buttons on the page to begin the registration process.
Technoplus Solution Enterprise Approaching Chart Informer.
Information Systems | SEPTEMBER 10, 2008 Service Portal Maintenance Understanding the Fundamentals of Drupal.
What is Web Site Administration Tool ? WAT Allow you to Configure Web Site With Simple Interface –Manage Users –Manage Roles –Manage Access Rules.
Drupal Workshop Introduction to Drupal Part 2: User/role management, Choosing/installing contributed modules, Transferring a site between servers.
Drupal Theming Chris Neglia and Lisa Forgan Copyright 2009, Page 1 Solutions.
Setting Up TGO User Accounts. Creating User Accounts for Other Users If your company has other users who need to use the Active Orders system, your company’s.
Drupal Recipe: Before and After Gallery Lisa Forgan and Chris Neglia, using notes from Drupal Camp Colorado Copyright 2009, Page 1 Solutions LLC.
 How we should structure our checkout and order process?  Checkout and Order Process of our framework  Stages of Checkout and Order Process.
Getting started with VendorVision Getting started with VendorVision Congratulations on using VendorVision! To get started, go to the VendorVision.
Copyright © 2012 Accenture All Rights Reserved.Copyright © 2012 Accenture All Rights Reserved. Accenture, its logo, and High Performance Delivered are.
1 CS 3870/CS 5870: Note 14. Prog5 Due 10 PM Wednesday, Oct 21 Authentication and Authorization 2.
Seattle Drupal Clinic Introduction to Drupal Part 2: User/role management, Drupal directory structure, Choosing/installing contributed modules.
1.Getting Started 2.Modifying Design 3.Newsletter Templates 4.Announcement 5.Administer Sections Index Training 14 th Mar., 2011.
NS IT SOLUTIONS SALES AND INVENTORY. NS IT SOLUTIONS Home Page.
Log into Log into the SPORT NGIN site or create an account if this is your first time in.
Configuring Drupal Information Systems 337 Prof. Harry Plantinga.
Website Update and Use of Official accounts Dr.Lasantha Ranwala ( MBBS,MSc-Biomedical Informatics) Medical Officer - Health Informatics RDHS Office.
Best Matrimonial Php Script by Scriptgiant 100% Source Codes Lifetime License Free 1 Year Updates Free Copyright Removal Highly customized admin panel.
How To Reset a Password in Everbridge. The Everbridge system does not allow us to see passwords. Please use the following process for Password reset.
Office of Information Technology GT Identity and Access Management JA-SIG CAS project (introducing login.gatech.edu) April 29th,
Moodle Install Guide Team 5 안정현 김현수 주채진 조수아. Moodle Install Enter moodle.org web site -> Go to Standard Moodle Packages in Downloads.
Certification Training: Neethling Brain Instrument (NBI™) ©2013 Global Insights Consulting, LLC NBI™ Technology System Guide.
Self Service BRANDING INPUTS
SuiteCRM – Magento Integration
New Face of EIP Dynamic Static
Multi-Vendor Marketplace Script | Multi-Vendor Ecommerce solutions
Step 1 Login on UHCP Site
w w w . l e a r n b l o o d t r a n s f u s i o n . o r g . u k
Content Management System
New Enhancements in the eLEND Solutions’ Dealer Dashboard
Powerschool for Parents
Registration Process & Dynamic Purchasing System (DPS)
Web Stuff Making It Work
User Registration.
New Face of EIP Dynamic Static
Password Reset and Access Management
Sites in Distribution Chain:
Project Name TEAM MEMBER 1 NAME TEAM MEMBER 2 NAME TEAM MEMBER 3 NAME
Sites in Distribution Chain:
Trademark And Copyright Solution | Basic Principles Of Copyrights
Trademark, Copyright, And Patents| Specialist Intellectual Property Lawyer At Aggasso
Aggasso's Trademark Registration Solution helps to protect your firm
The first time you login in to the upgraded system, please select ‘Forgotten your password?’ to reset your password before using the system.
Warranty screenshots.
Presentation transcript:

Drupal Recipe – Login Destinations Chris Neglia & Lisa Forgan Copyright 2009, Page 1 Solutions LLC

LoginToboggan and Login Destination Install LoginToboggan module Install Login Destination module Enable them in site building > modules

LoginToboggan It changes the login system so that users can login with username or address. It allows users to login instantly with a specific role (default: authenticated user) It allows you to set a (semi) dynamic url to direct people upon registration to a specific page. (Ex: user/%uid -> takes them to user page.)

Login Destination Allows you to set a destination to take people upon login using either a static url or custom PHP code. Custom PHP code means you can take users to a specific page based on the role or other characteristics available to the user. Allows you to set a specific context (page from which you are loggin in) for directing people to different areas. Note that this last point is somewhat limited.

Where Settings are Located User Management > LoginToboggan User Management > Login Destination

Example Login Destination Code // // mcn – 7/27 – this code will direct the user to different ‘profiles’ depending on their roles. // global $user; $url = 'user/'. $user->uid. '/profile'; foreach ($user->roles as $role_name) { switch ($role_name) { case 'dentist' : return $url. '/profile_dentist'; case 'dental vendor' : return $url. '/profile_vendor'; case 'dental patient' : return $url. '/profile_patient'; case 'dental team member' : return $url. '/profile_team'; case 'student' : return $url. '/student_profile'; default : continue; } return $url;