quick introduction
play

QUICK INTRODUCTION People call me GONZ QUICK INTRODUCTION 1. Never - PowerPoint PPT Presentation

QUICK INTRODUCTION People call me GONZ QUICK INTRODUCTION 1. Never went to Art School QUICK INTRODUCTION 1. Never went to Art School 2. Never took Computer Science class QUICK INTRODUCTION 1. Never went to Art School 2. Never took Computer


  1. QUICK INTRODUCTION People call me “GONZ”

  2. QUICK INTRODUCTION 1. Never went to Art School

  3. QUICK INTRODUCTION 1. Never went to Art School 2. Never took Computer Science class

  4. QUICK INTRODUCTION 1. Never went to Art School 2. Never took Computer Science class 3. Never won an Award

  5. QUICK INTRODUCTION

  6. SOME CLIENTS

  7. SOME CLIENTS

  8. SOME CLIENTS

  9. SOME CLIENTS

  10. SOME CLIENTS

  11. SOME CLIENTS

  12. SOME CLIENTS

  13. QUICK INTRODUCTION We’re Hiring (shameless plug)

  14. WARNING:

  15. WARNING:

  16. So why this session?

  17. As ¡website ¡developers ¡working ¡in ¡a ¡ Content ¡Management ¡System ¡like ¡ Drupal, ¡WordPress ¡or ¡Magento ¡we ¡ are ¡poised ¡with ¡2 ¡main ¡challenges.

  18. As ¡website ¡developers ¡working ¡in ¡a ¡ Content ¡Management ¡System ¡like ¡ Drupal, ¡WordPress ¡or ¡Magento ¡we ¡ are ¡poised ¡with ¡2 ¡main ¡challenges. 1. How ¡can ¡we ¡get ¡the ¡project ¡to ¡work ¡well ¡on ¡ the ¡front-­‑end

  19. As ¡website ¡developers ¡working ¡in ¡a ¡ Content ¡Management ¡System ¡like ¡ Drupal, ¡WordPress ¡or ¡Magento ¡we ¡ are ¡poised ¡with ¡2 ¡main ¡challenges. 1. How ¡can ¡we ¡get ¡the ¡project ¡to ¡work ¡well ¡on ¡ the ¡front-­‑end ¡ 2. How ¡can ¡we ¡get ¡the ¡project ¡to ¡work ¡well ¡on ¡ the ¡back-­‑end

  20. What we will cover: � Think Like an Admin

  21. What we will cover: � Think Like an Admin � Building Admin UX

  22. What we will cover: � Think Like an Admin � Building Admin UX � Common Mistakes

  23. What we will cover: � Think Like an Admin � Building Admin UX � Common Mistakes � Personal Mission

  24. As DevSigners – It is our responsibility to create the total web experience.

  25. THINK LIKE AN ADMIN THINK LIKE AN ADMIN

  26. THINK LIKE AN ADMIN 1. Admin’s 1 st Impression

  27. THINK LIKE AN ADMIN VS.

  28. THINK LIKE AN ADMIN 1. Admin’s 1 st Impression – Branded vs Blah UI

  29. THINK LIKE AN ADMIN 1. Admin’s 1 st Impression – Branded vs Blah UI – Keep it Simple (KISS)

  30. THINK LIKE AN ADMIN 1. Admin’s 1 st Impression – Branded vs Blah UI – Keep it Simple (KISS) – Customer Login vs Admin Login

  31. THINK LIKE AN ADMIN 2. Admin’s Key Objectives

  32. THINK LIKE AN ADMIN 2. Admin’s Key Objectives

  33. THINK LIKE AN ADMIN 2. Admin’s Key Objectives

  34. THINK LIKE AN ADMIN 2. Admin’s Key Objectives

  35. THINK LIKE AN ADMIN 2. Admin’s Key Objectives

  36. THINK LIKE AN ADMIN 2. Admin’s Key Objectives

  37. THINK LIKE AN ADMIN 2. Admin’s Key Objectives

  38. THINK LIKE AN ADMIN 3. Provide Training

  39. THINK LIKE AN ADMIN 3. Provide Training – Video Tutorials

  40. THINK LIKE AN ADMIN

  41. THINK LIKE AN ADMIN 3. Provide Training – Video Tutorials – Blog Posts (restricted access)

  42. THINK LIKE AN ADMIN 3. Provide Training – Video Tutorials – Blog Posts (restricted access) – Book Module (old school)

  43. THINK LIKE AN ADMIN 3. Provide Training – Video Tutorials – Blog Posts (restricted access) – Book Module (old school) – Keep Front & Center

  44. THINK LIKE AN ADMIN

  45. AWESOME CUSTOM ADMIN MENU

  46. SUPER HELPFUL HINTS

  47. BUILDING ADMIN UX BUILDING ADMIN UX

  48. BUILDING ADMIN UX BUILDING ADMIN UX ( Using Drupal Core )

  49. Drupal Dashboard Module

  50. Drupal Dashboard Module

  51. Drupal Dashboard Module

  52. Drupal Dashboard Module Get Creative Here

  53. Drupal Shortcuts Module

  54. BUILDING ADMIN UX Drupal Menu

  55. BUILDING ADMIN UX Drupal Menu Block

  56. BUILDING ADMIN UX Some Helpful Tips:

  57. BUILDING ADMIN UX Some Helpful Tips: – Keep Content Types Easy to Populate

  58. BUILDING ADMIN UX Some Helpful Tips: – Keep Content Types Easy to Pupulate

  59. BUILDING ADMIN UX Some Helpful Tips: – Keep Content Types Easy to Populate – Keep Logic on the Backend

  60. BUILDING ADMIN UX

  61. BUILDING ADMIN UX Some Helpful Tips: – Keep Content Types Easy to Populate – Keep Logic on the Backend Favorite Modules:

  62. BUILDING ADMIN UX Some Helpful Tips: – Keep Content Types Easy to Populate – Keep Logic on the Backend Favorite Modules: – Good ol’ Taxonomy

  63. BUILDING ADMIN UX Some Helpful Tips: – Keep Content Types Easy to Populate – Keep Logic on the Backend Favorite Modules: – Good ol’ Taxonomy – Field Collection Module

  64. BUILDING ADMIN UX Some Helpful Tips: – Keep Content Types Easy to Populate – Keep Logic on the Backend Favorite Modules: – Good ol’ Taxonomy – Field Collection Module #thankyou

  65. BUILDING ADMIN UX Some Helpful Tips: – Keep Content Types Easy to Populate – Keep Logic on the Backend Favorite Modules: – Good ol’ Taxonomy – Field Collection Module #thankyou – Entity Reference

  66. BUILDING ADMIN UX Huge Fan of Landing Page Editors

  67. BUILDING ADMIN UX

  68. BUILDING ADMIN UX Keep the Admin in one place & make it easy as possible

  69. BUILDING ADMIN UX Admin input fields should have meaningful instructions.

  70. BUILDING ADMIN UX

  71. BUILDING ADMIN UX Quick Edit Links for Admin Edit Link <?php ¡global ¡$user; ¡ ¡ if ¡(is_array($user-­‑>roles) ¡&& ¡in_array('administrator', ¡ $user-­‑>roles)) ¡{ ¡ ¡ ¡ print ¡'<a ¡href="/node/' ¡. ¡$node-­‑>nid ¡. ¡'/edit" ¡ class="blogEdit">Edit</a>'; ¡ ¡ } ¡ ?> ¡

  72. BUILDING ADMIN UX Quick Edit Links for Admin <?php ¡global ¡$user; ¡ ¡ if ¡(is_array($user-­‑>roles) ¡&& ¡in_array('administrator', ¡ $user-­‑>roles)) ¡{ ¡ ¡ ¡ print ¡'<a ¡href="/node/' ¡. ¡$node-­‑>nid ¡. ¡'/edit" ¡ class="blogEdit">Edit</a>'; ¡ ¡ } ¡ ?> ¡

  73. BUILDING ADMIN UX Take it a Step Further

  74. BUILDING ADMIN UX Take it a Step Further – Design Your Own Admin Dashboard

  75. BUILDING ADMIN UX Take it a Step Further – Design Your Own Admin Dashboard – Wireframe it Out

  76. BUILDING ADMIN UX Take it a Step Further – Design Your Own Admin Dashboard – Wireframe it Out

  77. BUILDING ADMIN UX

  78. BUILDING ADMIN UX Take it a Step Further – Design Your Own Admin Dashboard – Wireframe it Out – /user-template.tpl.php

  79. BUILDING ADMIN UX Take it a Step Further – Design Your Own Admin Dashboard – Wireframe it Out – /user-template.tpl.php <?php ¡global ¡$user; ¡ ¡ if ¡(is_array($user-­‑>roles) ¡&& ¡in_array('administrator', ¡ $user-­‑>roles)) ¡{ ¡ ¡ ¡ print ¡’YOUR ¡ADMIN ¡HTML ¡HERE'; ¡ ¡ } ¡ ?> ¡

  80. BUILDING ADMIN UX Custom Admin Dashboard

  81. BUILDING ADMIN UX Custom Admin Dashboard – Create a Custom Module

  82. BUILDING ADMIN UX Custom Admin Dashboard – Create a Custom Module

  83. BUILDING ADMIN UX Custom Admin Dashboard – Create a Custom Module

  84. BUILDING ADMIN UX Custom Admin Dashboard – Create a Custom Module

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend