Everything you ever wanted to know about Drupal 8*

Size: px
Start display at page:

Download "Everything you ever wanted to know about Drupal 8*"

Transcription

1 Everything you ever wanted to know about Drupal 8* but were too afraid to ask *conditions apply

2 So you want to start a pony stud small horses, big hearts

3 Drupal 8 - in a nutshell Learn Once - Apply Everywhere* Source: *Including outside Drupal

4 Major Architectural Changes

5 Don t be afraid...

6 "If you learnt php from Drupal - Drupal 8 will teach you modern php from a familiar setting" - Me, 2014

7 Proudly invented elsewhere Installed with Composer: easyrdf/easyrdf symfony2/{various} symfony-cmf/routing zendframework/zend-feed guzzle/http doctrine/annotations...

8 Modern PHP PHP 5.4+ Object-oriented PHP Classes, Interfaces, Namespaces PSR-0, PSR-4

9 Object-Oriented PHP Example menu_block/lib/drupal/menu_block/menublockrepository.php

10 Dependency Injection

11 Dependency Injection page_example/lib/drupal/page_example/exampleservice.php

12 Dependency Injection Container Symfony2 component Steps: 1. Write a class 2. Define it as a service in *.services.yml

13 Dependency Injection Container page_example/page_examples.services.yml

14 Extension points Plugins Modules Services

15 Routing Pages and Forms

16 Routing Pages and Forms What does D7 hook_menu really do? routes default menu items local actions local tasks

17 D7 Hook Menu

18 D7 Hook Menu

19 Routing Pages 2 easy steps: 1. create a PHP class that extends ControllerBase 2. create route definition in module_name. routing.yml

20 2. Create a Controller class page_example/lib/drupal/page_example/controller/pageexamplecontroller. php

21 1. Create a route definition page_example/page_example.routing.yml

22 ControllerBase Goodies D7 D8 t( some text ) $this->t( some text ); l( title, $path) $this->l( title, $route_name); url($path) $this->url($route_name); drupal_goto($path) $this->redirect($route_name); global $user $this->currentuser(); variable_get($key) $this->config( group )->get($key); cache_get($key) $this->cache()->get($key); module_exists($m) ($m) $this->modulehandler()->moduleexists

23 Controller DI Factory Pattern

24 Routing Forms 2 steps: 1. create a form class that extends FormBase 2. create route definition in module.routing.yml

25 Form Example

26 Form Example

27 What happened to hook_menu()? (sad face)

28 Default Menu Links hook_menu_link_defaults()

29 Local Actions module.local_actions.yml

30 Local Tasks module.local_tasks.yml

31 Other formats? Leveraging request accept headers Ajax controller Dialog controller REST Request uri Accept header Response node/1 application/hal+json The node in hal+json node/1 text/html The node page node/1 application/vnd.drupal-modal The node in a modal

32 Routing Documentation

33 Configuration System

34 Configuration System variable_{get,set} are gone! Config is stored in yaml files sites/default/files/config_{hash}/{active,staging}

35 Configuration System $config = \Drupal::config('forum.settings'); $vocabulary = $config->get('vocabulary'); $config->set('vocabulary', 'hooha')->save(); In OO code, inject service

36 Configuration System system_settings_form() is gone Instead subclass ConfigFormBase \Drupal\system\Form\SiteInformationForm

37 Configuration System Ctools exportables => Config Entities

38 Configuration System Unified Entity API including config $node_type = $storage_controller->create($values); $node_type->save(); $node_type->label(); $node_type->id();

39 Configuration System Module config imported on install Docs

40 Configuration System Deployment workflows Active => Staging => Active

41 Configuration System Translatable in core Schemas for validation

42 Configuration System State (Key/Value) API Settings API

43 Plugins

44 Plugins Learn plugins once - apply it everywhere

45 Plugins Semi-random magic collection of hooks Real objects and interfaces

46 Drupal 7 Block function forum_block_info() function forum_block_save() function forum_block_configure() function forum_block_view()

47 Drupal 8 Block Steps: 1. Create a new PHP class 2. Add some annotations

48 Blocks

49 Plugins Advantages: Base classes Inheritance One file per plugin Nice. Neat. Tidy.

50 Plugins So many more Learn Once Apply Everywhere More: *Stream wrappers still pending

51 Migrate in core Sunday 10:30am chx

52 Entities and Fields

53 Entities and Fields First class objects Swappable classes Common API No more of this crap $node->field_foo[language_none][0]['value']

54 Entities and Fields New field types Link Comment Date Entity Reference Telephone

55 Entities and Fields Display and form modes Base field consistency Fieldable blocks

56 Entities and Fields Now plugins: Field types Field formatters Widgets

57 Entities and Fields Unified API using first-class objects. D7 : $node->field_foo[language_none][0]['value'] D8: Node->title->value Node->field_foo->value

58 Entities and Fields Info Discovery API $entity->getpropertydefinitions() Drupal\Core\Field\FieldDefinitionInterface

59 Frontend

60 Twig node.tpl.php -> node.html.twig Simple Safe

61 Twig example

62 There s a session for that... Can I TWIG It? Yes, You Can! Sunday 11:30am mortendk

63 theme() is deprecated Instead: Return render arrays with a #theme item

64 #theme example

65 drupal_add_js/css() removed No Javascript will be loaded by default Steps: 1. Declare assets with hook_library_info() 2. #attach your library in a render array

66 Library Info Hook

67 Coming soon...

68 #attached

69 Responsive? Responsive core themes Responsive admin theme Picture element HTML5

70 More JS Libraries in Core jquery UI Touch Punch Backbone, Underscore modernizr domready html5shiv & classlist

71 What else? Wysiwyg Plugins Tour Edit Backbone, Underscore Toolbar

72 A Tour Of The Tour Module Sunday 1:30pm nick_schuch

73 Current State DX Cleanup Criticals and beta blockers

74 Current State

75 Questions? Lee Rowlands Senior Drupal Developer Kim Pepper Technical

Drupal 8 The site builder's release

Drupal 8 The site builder's release Drupal 8 The site builder's release Antje Lorch @ifrik DrupalCamp Vienna 2015 #dcvie drupal.org/u/ifrik about me Sitebuilder Building websites for small NGOs and grassroots organisations Documentation

More information

Faichi Solutions. The Changing Face of Drupal with Drupal 8

Faichi Solutions. The Changing Face of Drupal with Drupal 8 Faichi Solutions The Changing Face of Drupal with Drupal 8 Whitepaper published on Dec. 17, 2014 Compiled & Written by: Team Drupal, Faichi Edited by: Payal Mathur, Communication Manager, Faichi CONTENTS

More information

Preparing for Drupal 8

Preparing for Drupal 8 WHITE PAPER Preparing for Drupal 8 This is the first in a series of whitepapers to help Drupal service providers prepare for Drupal 8. In this paper, we introduce and summarize the features, benefits,

More information

Drupal 8. Core and API Changes Shabir Ahmad MS Software Engg. NUST Principal Software Engineser PHP/Drupal engr.shabir@yahoo.com

Drupal 8. Core and API Changes Shabir Ahmad MS Software Engg. NUST Principal Software Engineser PHP/Drupal engr.shabir@yahoo.com Drupal 8 Core and API Changes Shabir Ahmad MS Software Engg. NUST Principal Software Engineser PHP/Drupal engr.shabir@yahoo.com Agenda What's coming in Drupal 8 for o End users and clients? o Site builders?

More information

Drupal and ArcGIS Yes, it can be done. Frank McLean Developer

Drupal and ArcGIS Yes, it can be done. Frank McLean Developer Drupal and ArcGIS Yes, it can be done Frank McLean Developer Who we are NatureServe is a conservation non-profit Network of member programs Track endangered species and habitats Across North America Environmental

More information

Symfony2 and Drupal. Why to talk about Symfony2 framework?

Symfony2 and Drupal. Why to talk about Symfony2 framework? Symfony2 and Drupal Why to talk about Symfony2 framework? Me and why Symfony2? Timo-Tuomas Tipi / TipiT Koivisto, M.Sc. Drupal experience ~6 months Symfony2 ~40h Coming from the (framework) Java world

More information

Entites in Drupal 8. Sascha Grossenbacher Christophe Galli

Entites in Drupal 8. Sascha Grossenbacher Christophe Galli Entites in Drupal 8 Sascha Grossenbacher Christophe Galli Who are we? Sascha (berdir) Christophe (cgalli) Active core contributor Entity system maintainer Porting and maintaining lots of D8 contrib projects

More information

How To Fix A Bug In Drupal 8.Dev

How To Fix A Bug In Drupal 8.Dev Drupal 8 Configuration system for coders and site builders who am I? Kristof De Jaeger @swentel co-founder of eps & kaas co-maintainer of Field API Original creator of Display Suite Outline What s the

More information

Software Development & Education Center PHP 5

Software Development & Education Center PHP 5 Software Development & Education Center PHP 5 (ADVANCE) Detailed Curriculum Advance PHP JQuery Basics Of JQuery Including the JQuery Library Code in an HTML Page JQuery Utilities Faster, Simpler, More

More information

Who? Wolfgang Ziegler (fago) Klaus Purer (klausi) Sebastian Gilits (sepgil) epiqo Austrian based Drupal company Drupal Austria user group

Who? Wolfgang Ziegler (fago) Klaus Purer (klausi) Sebastian Gilits (sepgil) epiqo Austrian based Drupal company Drupal Austria user group Who? Wolfgang Ziegler (fago) Klaus Purer (klausi) Sebastian Gilits (sepgil) epiqo Austrian based Drupal company Drupal Austria user group Rules!?!? Reaction rules or so called ECA-Rules Event-driven conditionally

More information

FormAPI, AJAX and Node.js

FormAPI, AJAX and Node.js FormAPI, AJAX and Node.js Overview session for people who are new to coding in Drupal. Ryan Weal Kafei Interactive Inc. http://kafei.ca These slides posted to: http://verbosity.ca Why? New developers bring

More information

Sitecore Dashboard User Guide

Sitecore Dashboard User Guide Sitecore Dashboard User Guide Contents Overview... 2 Installation... 2 Getting Started... 3 Sample Widgets... 3 Logged In... 3 Job Viewer... 3 Workflow State... 3 Publish Queue Viewer... 4 Quick Links...

More information

MASTER DRUPAL 7 MODULE DEVELOPMENT

MASTER DRUPAL 7 MODULE DEVELOPMENT MASTER DRUPAL 7 MODULE DEVELOPMENT by blair wadman sample available for purchase at http://befused.com/master-drupal/ LESSON 1 INTRODUCTION In this section, you will be introduced to the core Drupal concepts

More information

#d8rules - Support the Rules module for Drupal 8

#d8rules - Support the Rules module for Drupal 8 #d8rules - Support the Rules module for Drupal 8 Introduction Benefits of funding Rules in Drupal 8 On a larger scale For your own business Rules 8.x Overview of the Rules 8.x features Site building based

More information

Gantry Basics. Presented By: Jesse Hammil (Peanut Gallery: David Beuving)

Gantry Basics. Presented By: Jesse Hammil (Peanut Gallery: David Beuving) Gantry Basics Intro By: Matt Simonsen Presented By: Jesse Hammil (Peanut Gallery: David Beuving) Khoza Technology, Inc. My Background is Multi-Faceted Small biz owner Windows MCSE (pre-000) Linux Admin

More information

Eclipse 4 RCP application Development COURSE OUTLINE

Eclipse 4 RCP application Development COURSE OUTLINE Description The Eclipse 4 RCP application development course will help you understand how to implement your own application based on the Eclipse 4 platform. The Eclipse 4 release significantly changes

More information

How does Drupal 7 Work? Tess Flynn, KDØPQK www.deninet.com

How does Drupal 7 Work? Tess Flynn, KDØPQK www.deninet.com How does Drupal 7 Work? Tess Flynn, KDØPQK www.deninet.com About the Author Bachelor of Computer Science Used Drupal since 4.7 Switched from self-built PHP CMS Current Job: Not in Drupal! But she d like

More information

JAVASCRIPT, TESTING, AND DRUPAL

JAVASCRIPT, TESTING, AND DRUPAL JAVASCRIPT, TESTING, AND DRUPAL Rob Ballou @rob_ballou 1 JS, TESTING, AND DRUPAL What is the current state of JS in Drupal 7? JavaScript testing Drupal 8 2 ABOUT ME I work for Aten Design Group in Denver,

More information

Symfony vs. Integrating products when to use a framework

Symfony vs. Integrating products when to use a framework Symfony vs. Integrating products when to use a framework Xavier Lacot Clever Age Who I am Symfony developer since end 2005 Several contributions (plugins, docs, patches, etc.) Manager of the PHP Business

More information

Paul Boisvert. Director Product Management, Magento

Paul Boisvert. Director Product Management, Magento Magento 2 Overview Paul Boisvert Director Product Management, Magento Platform Goals Release Approach 2014 2015 2016 2017 2.0 Dev Beta 2.0 Merchant Beta 2.x Ongoing Releases 2.0 Dev RC 2.0 Merchant GA

More information

KEYSTONE JS FOR DRUPAL DEVELOPERS

KEYSTONE JS FOR DRUPAL DEVELOPERS NYC CAMP KEYSTONE JS FOR DRUPAL DEVELOPERS @northps JULY 18, 2016 ABOUT US Founded 2003 114 Employees 10 YEARS Average Experience Offices in: NEW YORK, NY (HQ) BOSTON, MA PHILADELPHIA, PA 80 % Of our clients

More information

Scott Moore, Esri April 4, 2016 2016 Intermountain, Great Falls, MT

Scott Moore, Esri April 4, 2016 2016 Intermountain, Great Falls, MT Create Great Web Apps No Coding Required Scott Moore, Esri April 4, 2016 2016 Intermountain, Great Falls, MT Agenda Product overview Web AppBuilder for ArcGIS tour What s New November 2015 ArcGIS Online

More information

2nd Edition. Covers Drupal 7 & 8. Programmer s Guide to. Drupal PRINCIPLES, PRACTICES, AND PITFALLS. Jennifer Hodgdon

2nd Edition. Covers Drupal 7 & 8. Programmer s Guide to. Drupal PRINCIPLES, PRACTICES, AND PITFALLS. Jennifer Hodgdon Programmer s Guide to Drupal 2nd Edition Covers Drupal 7 & 8 PRINCIPLES, PRACTICES, AND PITFALLS Jennifer Hodgdon Programmer's Guide to Drupal If you re a web programmer, your experiences have taught you

More information

(Don t Fear) the Features Now with more cowbell. Aimee Degnan / aimee@hook42.com

(Don t Fear) the Features Now with more cowbell. Aimee Degnan / aimee@hook42.com (Don t Fear) the Features Now with more cowbell. Aimee Degnan / aimee@hook42.com Me Aimee Degnan, CEO! 1996 Enterprise Web Tech & CMS! 2006 PMP, Stanford Advanced PM! 2008 Drupal! 2010 Agile: Scrum Master,

More information

Configuration Management in Drupal 8. Andrea Pescetti Nuvole

Configuration Management in Drupal 8. Andrea Pescetti Nuvole Configuration Management in Drupal 8 Andrea Pescetti Nuvole Nuvole Parma Brussels Prague Pioneers of Code Driven Development: configuration management for Drupal 6 and Drupal 7. Successfully used in projects

More information

Managing Projects Using Drupal 8 s Configuration Management System

Managing Projects Using Drupal 8 s Configuration Management System Managing Projects Using Drupal 8 s Configuration Management System Presented in Technicolor by Matt Cheney matt@pantheon.io This session is brought to you by G0VC0N & the Drupal 8 CMS.IO In the beginning..io

More information

A new theme layer for Drupal 8? with jenlampton, chx, JohnAlbin, mortendk, effulgentsia, EclipseGc, & davidneedham

A new theme layer for Drupal 8? with jenlampton, chx, JohnAlbin, mortendk, effulgentsia, EclipseGc, & davidneedham 22 A new theme layer for Drupal 8? with jenlampton, chx, JohnAlbin, mortendk, effulgentsia, EclipseGc, & davidneedham Au gu st 20 12 INTRODUCTIONS WHO ARE YOU? YOU ARE: Theme developers? (D7? D6? D5?) YOU

More information

Drupal Training Modules 2015

Drupal Training Modules 2015 Drupal Training Modules 2015 Webikon.com Phone: +40-722-369674 E-mail: contact@webikon.com Web: http://webikon.com Drupal Training Modules 1 / 8 About us Webikon is a Romanian company focused in consulting,

More information

The following is a comparison between CiviCRM, RedHen and CRM Core which are the leading option for CRM in the Drupal Community.

The following is a comparison between CiviCRM, RedHen and CRM Core which are the leading option for CRM in the Drupal Community. The following is a comparison between CiviCRM, RedHen and CRM Core which are the leading option for CRM in the Drupal Community. Feature CiviCRM RedHen CRM Core Create contacts for individuals, organizations

More information

I have experience in building large Community websites, Business websites, Products and Services websites and E-commerce websites using Drupal.

I have experience in building large Community websites, Business websites, Products and Services websites and E-commerce websites using Drupal. Email: compujohnny@gmail.com Skype: compujohnny http://www.jesox.com https://www.drupal.org/u/compujohnny Dear Employer, I am a Professional Web developer having over 7 years experience in creating business

More information

Develop a Native App (ios and Android) for a Drupal Website without Learning Objective-C or Java. Drupaldelphia 2014 By Joe Roberts

Develop a Native App (ios and Android) for a Drupal Website without Learning Objective-C or Java. Drupaldelphia 2014 By Joe Roberts Develop a Native App (ios and Android) for a Drupal Website without Learning Objective-C or Java Drupaldelphia 2014 By Joe Roberts Agenda What is DrupalGap and PhoneGap? How to setup your Drupal website

More information

Easy configuration of NETCONF devices

Easy configuration of NETCONF devices Easy configuration of NETCONF devices David Alexa 1 Tomas Cejka 2 FIT, CTU in Prague CESNET, a.l.e. Czech Republic Czech Republic alexadav@fit.cvut.cz cejkat@cesnet.cz Abstract. It is necessary for developers

More information

Behavioral Driven Development with Behat

Behavioral Driven Development with Behat Behavioral Driven Development with Behat by your friend: Ryan Weaver @weaverryan Who is this Hipster? The Symfony Docs guy KnpLabs US - Symfony consulting, training, Kumbaya Writer for KnpUniversity.com

More information

Drupal CMS for marketing sites

Drupal CMS for marketing sites Drupal CMS for marketing sites Intro Sample sites: End to End flow Folder Structure Project setup Content Folder Data Store (Drupal CMS) Importing/Exporting Content Database Migrations Backend Config Unit

More information

Cross-Platform Tools

Cross-Platform Tools Cross-Platform Tools Build once and Run Everywhere Alexey Karpik Web Platform Developer at ALTOROS Action plan Current mobile platforms overview Main groups of cross-platform tools Examples of the usage

More information

HOW TO CREATE THEME IN MAGENTO 2

HOW TO CREATE THEME IN MAGENTO 2 The Essential Tutorial: HOW TO CREATE THEME IN MAGENTO 2 A publication of Part 1 Whoever you are an extension or theme developer, you should spend time reading this blog post because you ll understand

More information

Linked Data Publishing with Drupal

Linked Data Publishing with Drupal Linked Data Publishing with Drupal Joachim Neubert ZBW German National Library of Economics Leibniz Information Centre for Economics SWIB13 Workshop Hamburg, Germany 25.11.2013 ZBW is member of the Leibniz

More information

Kentico CMS 5 Developer Training Syllabus

Kentico CMS 5 Developer Training Syllabus Kentico CMS 5 Developer Training Syllabus June 2010 Page 2 Contents About this Course... 4 Overview... 4 Audience Profile... 4 At Course Completion... 4 Course Outline... 5 Module 1: Overview of Kentico

More information

Services, Dependency Injection, and Containers, Oh my!

Services, Dependency Injection, and Containers, Oh my! Services, Dependency Injection, and Containers, Oh my! Jennifer Hodgdon (jhodgdon) Pacific Northwest Drupal Summit Portland, Oregon October 18-19, 2014 What is a Service? Concept adopted from Symfony project

More information

BUILDING MULTILINGUAL WEBSITES WITH DRUPAL 7

BUILDING MULTILINGUAL WEBSITES WITH DRUPAL 7 BUILDING MULTILINGUAL WEBSITES WITH DRUPAL 7 About us! Getting to know you... What are your multilingual needs? What you need Check A fresh Drupal 7 instance installed locally Download of module files

More information

Elgg 1.8 Social Networking

Elgg 1.8 Social Networking Elgg 1.8 Social Networking Create, customize, and deploy your very networking site with Elgg own social Cash Costello PACKT PUBLISHING open source* community experience distilled - BIRMINGHAM MUMBAI Preface

More information

Progressive Enhancement With GQuery and GWT. Ray Cromwell ray@timefire.com

Progressive Enhancement With GQuery and GWT. Ray Cromwell ray@timefire.com Progressive Enhancement With GQuery and GWT Ray Cromwell ray@timefire.com Web Application Models Web 1.0, 1 Interaction = 1 Page Refresh Pure JS, No Navigation Away from Page Mixed Model, Page Reloads

More information

D7 Panels From Zero to Hero Tutorial

D7 Panels From Zero to Hero Tutorial D7 Panels From Zero to Hero in 2000 Seconds Topic of this talk: Building stuff with Panels in Drupal 7 Schedule (more or less): 1. Getting started (10 min) Why Panels? CTools, Pages and Variants, overriding

More information

Drupal 6 to Drupal 7 Migration Worksheet

Drupal 6 to Drupal 7 Migration Worksheet Drupal 6 to Drupal 7 Migration Worksheet Rationale for This Document An upgrade of a Drupal 6 website is a complex proposition. As a general rule of thumb, many professional Drupal development teams approach

More information

Optimizing Drupal Performance. Benchmark Results

Optimizing Drupal Performance. Benchmark Results Benchmark Results February 2010 Table of Contents Overview 3 Test Environment 3 Results Summary 4 Configurations and Test Details 8 Bytecode Caching 12 Improving Drupal Code with Partial Caching 13 Full

More information

Automating Drupal Development with Patterns

Automating Drupal Development with Patterns Automating Drupal Development with Patterns David Rozas, Liao Hao and many others This work was partly supported by the Future and Emerging Technologies Programme (FP7-COSI-ICT) of the European Commission

More information

Armedia. Drupal and PhoneGap Building Mobile Apps

Armedia. Drupal and PhoneGap Building Mobile Apps Armedia Drupal and PhoneGap Building Mobile Apps Armedia www.armedia.com Jim Nasr, CEO e: jnasr@armedia.com t: @jnarm o: (678) 337-1010 x110 I in$brief... The mobile landscape is convoluted. Lots of service

More information

Agile Web Development Liip.ch. Introduction to. Lukas Kahwe Smith @lsmith lukas@liip.ch. some content graciously stolen from Yoav

Agile Web Development Liip.ch. Introduction to. Lukas Kahwe Smith @lsmith lukas@liip.ch. some content graciously stolen from Yoav Agile Web Development Liip.ch! Introduction to Lukas Kahwe Smith @lsmith lukas@liip.ch some content graciously stolen from Yoav Brought to you by familiar faces.. Jary Carter CEO Dima Soroka! VP of Engineering

More information

Migrating into Drupal 8

Migrating into Drupal 8 Migrating into Drupal 8 Ryan Weal, Kafei Interactive Inc. Montréal QC ryan@kafei.ca Drupal.org : https://drupal.org/user/412402 Twitter : http://twitter.com/ryan_weal IRC : weal What is migrate? A collection

More information

Armedia. Drupal and PhoneGap Building Mobile Apps

Armedia. Drupal and PhoneGap Building Mobile Apps Armedia Drupal and PhoneGap Building Mobile Apps Armedia www.armedia.com Jim Nasr, CEO e: jnasr@armedia.com t: @jnarm o: (770) 615-4231 I in brief... The mobile landscape is convoluted. Lots of service

More information

Wednesday, November 7, 12 THE LEADER IN DRUPAL PLATFORM DESIGN AND DEVELOPMENT

Wednesday, November 7, 12 THE LEADER IN DRUPAL PLATFORM DESIGN AND DEVELOPMENT THE LEADER IN DRUPAL PLATFORM DESIGN AND DEVELOPMENT BUILDING AND DEPLOYING SITES USING FEATURES2.0 BUILDING AND DEPLOYING SITES USING FEATURES Mike Potter Phase2 Technology Maintainer of Features and

More information

Question 3. Do you have a list of modules in use?

Question 3. Do you have a list of modules in use? ADMINISTRATIVE OFFICE OF THE COURTS PROCUREMENT AND CONTRACT ADMINISTRATION 2003 C COMMERCE PARK DRIVE ANNAPOLIS, MARYLAND 21401 PAMELA HARRIS STATE COURT ADMINISTRATOR (410) 260-1295 Fax: (410) 974-2066

More information

Data Management Applications with Drupal as Your Framework

Data Management Applications with Drupal as Your Framework Data Management Applications with Drupal as Your Framework John Romine UC Irvine, School of Engineering UCCSC, IR37, August 2013 jromine@uci.edu What is Drupal? Open-source content management system PHP,

More information

Yusof Al-Wadei Page 1 of 9. Interactive Web Design through Survey and Adoption of Modern Web-Technologies Yusof Hussein Al-Wadei

Yusof Al-Wadei Page 1 of 9. Interactive Web Design through Survey and Adoption of Modern Web-Technologies Yusof Hussein Al-Wadei Page 1 of 9 Interactive Web Design through Survey and Adoption of Modern Web-Technologies Yusof Hussein Al-Wadei Page 2 of 9 ABSTRACT Technologies used in modern web development are continuously being

More information

Visualizing an OrientDB Graph Database with KeyLines

Visualizing an OrientDB Graph Database with KeyLines Visualizing an OrientDB Graph Database with KeyLines Visualizing an OrientDB Graph Database with KeyLines 1! Introduction 2! What is a graph database? 2! What is OrientDB? 2! Why visualize OrientDB? 3!

More information

Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION

Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION AGENDA 1. Overview of Magento 2.0 2. Features and benefits of Magento 2.0 over Magento 1.x 3. Why should we upgrade to Magento 2.0

More information

Acquia Introduction December 9th, 2009

Acquia Introduction December 9th, 2009 Acquia Introduction December 9 th, 2009 Agenda 1. Content Management 2. Web Application Framework 3. Architecture principles 1. Modular 2. Event driven 3. Skinnable 4. Secure 5. Accessible 4. Enterprise

More information

Introduction to Web AppBuilder for ArcGIS: JavaScript Apps Made Easy

Introduction to Web AppBuilder for ArcGIS: JavaScript Apps Made Easy Introduction to Web AppBuilder for ArcGIS: JavaScript Apps Made Easy OKSCAUG Pamela Kersh September 22, 2015 The ArcGIS Platform enables Web GIS Enabling GIS Everywhere Desktop Web Device Simple Integrated

More information

Installing and Sending with DocuSign for NetSuite v2.2

Installing and Sending with DocuSign for NetSuite v2.2 DocuSign Quick Start Guide Installing and Sending with DocuSign for NetSuite v2.2 This guide provides information on installing and sending documents for signature with DocuSign for NetSuite. It also includes

More information

GROWING AND MANAGING DRUPAL ORGANISATIONS. Janne Kalliola / Exove

GROWING AND MANAGING DRUPAL ORGANISATIONS. Janne Kalliola / Exove GROWING AND MANAGING DRUPAL ORGANISATIONS Janne Kalliola / Exove Growing and Managing Drupal Organisations About Exove and myself Building Drupal organisations as a vendor Hiring talented people Growing

More information

Using your Drupal Website Book 1 - Drupal Basics

Using your Drupal Website Book 1 - Drupal Basics Book 1 - Drupal Basics By Karl Binder, The Adhere Creative Ltd. 2010. This handbook was written by Karl Binder from The Adhere Creative Ltd as a beginners user guide to using a Drupal built website. It

More information

Cache All The Things

Cache All The Things Cache All The Things About Me Mike Bell Drupal Developer @mikebell_ http://drupal.org/user/189605 Exactly what things? erm... everything! No really... Frontend: - HTML - CSS - Images - Javascript Backend:

More information

Absolute Beginner s Guide to Drupal

Absolute Beginner s Guide to Drupal Absolute Beginner s Guide to Drupal 1. Introduction 2. Install 3. Create 4. Extend 5. Design 6. Practice The OSWay 1. Introduction 2. Install 3. Create 4. Extend 5. Design 6. Practice The OSWay Drupal

More information

Content Management Systems: Drupal Vs Jahia

Content Management Systems: Drupal Vs Jahia Content Management Systems: Drupal Vs Jahia Mrudula Talloju Department of Computing and Information Sciences Kansas State University Manhattan, KS 66502. mrudula@ksu.edu Abstract Content Management Systems

More information

Embracing Eclipse Orion

Embracing Eclipse Orion Embracing Eclipse Orion Andy Clement, Staff Engineer, aclement@vmware.com @andy_clement Re-distribution allowed with author s consent. 2012 SpringSource, A division of VMware. All rights reserved Who am

More information

Trainer name is P. Ranjan Raja. He is honour of www.php2ranjan.com and he has 8 years of experience in real time programming.

Trainer name is P. Ranjan Raja. He is honour of www.php2ranjan.com and he has 8 years of experience in real time programming. Website: http://www.php2ranjan.com/ Contact person: Ranjan Mob: 09347045052, 09032803895 Domalguda, Hyderabad Email: purusingh2004@gmail.com Trainer name is P. Ranjan Raja. He is honour of www.php2ranjan.com

More information

MathCloud: From Software Toolkit to Cloud Platform for Building Computing Services

MathCloud: From Software Toolkit to Cloud Platform for Building Computing Services MathCloud: From Software Toolkit to Cloud Platform for Building Computing s O.V. Sukhoroslov Centre for Grid Technologies and Distributed Computing ISA RAS Moscow Institute for Physics and Technology MathCloud

More information

Framework as a master tool in modern web development

Framework as a master tool in modern web development Framework as a master tool in modern web development PETR DO, VOJTECH ONDRYHAL Communication and Information Systems Department University of Defence Kounicova 65, Brno, 662 10 CZECH REPUBLIC petr.do@unob.cz,

More information

CiviCRM for Drupal Developers

CiviCRM for Drupal Developers + CiviCRM for Drupal Developers Coleman Watts CiviCRM user since 2010 Found Civi through Drupal Implemented Civi for Woolman School Author of Webform Integration, and a few other CiviCRM modules and APIs

More information

HTML5. Turn this page to see Quick Guide of CTTC

HTML5. Turn this page to see Quick Guide of CTTC Programming SharePoint 2013 Development Courses ASP.NET SQL TECHNOLGY TRAINING GUIDE Visual Studio PHP Programming Android App Programming HTML5 Jquery Your Training Partner in Cutting Edge Technologies

More information

HTML5 Data Visualization and Manipulation Tool Colorado School of Mines Field Session Summer 2013

HTML5 Data Visualization and Manipulation Tool Colorado School of Mines Field Session Summer 2013 HTML5 Data Visualization and Manipulation Tool Colorado School of Mines Field Session Summer 2013 Riley Moses Bri Fidder Jon Lewis Introduction & Product Vision BIMShift is a company that provides all

More information

with Microsoft Office Sharepoint Server (MOSS) Webparts

with Microsoft Office Sharepoint Server (MOSS) Webparts 300 Tristate International, 150 Lincolnshire, IL 60069 www.necsphere.com 847.793.9600 August 2009 NEC UNIVERGE Sphericall with Microsoft Office Sharepoint Server (MOSS) Webparts Overall Architecture SharePoint

More information

Creating a Drupal 8 theme from scratch

Creating a Drupal 8 theme from scratch Creating a Drupal 8 theme from scratch Devsigner 2015 (Hashtag #devsigner on the internets) So you wanna build a website And you want people to like it Step 1: Make it pretty Step 2: Don t make it ugly

More information

VIVO Dashboard A Drupal-based tool for harvesting and executing sophisticated queries against data from a VIVO instance

VIVO Dashboard A Drupal-based tool for harvesting and executing sophisticated queries against data from a VIVO instance VIVO Dashboard A Drupal-based tool for harvesting and executing sophisticated queries against data from a VIVO instance! Paul Albert, Miles Worthington and Don Carpenter Chapter I: The Problem Administrators

More information

Version 2.0 Overview. Drupal Government Days. Monday, August 19, 2013

Version 2.0 Overview. Drupal Government Days. Monday, August 19, 2013 Version 2.0 Overview Drupal Government Days Mike Potter Software Architect, Phase2 Open Atrium 2 Lead Architect Email: mpotter@phase2technology.com Drupal.org: mpotter Overview of Open Atrium 2.0 What

More information

The truth about Drupal

The truth about Drupal The truth about Drupal Why Drupal is great Large community of 3rd party developer Quality control over contributed code Most of the indispensable contributed modules are maintained by solid development

More information

Drupal Module Development

Drupal Module Development Drupal Module Development Or: How I Learned to Stop Worrying and Love the Module Alastair Moore & Paul Flewelling 1 What does a module do? Core modules provides functionality Contributed modules extends

More information

Drupal 8 Development Retrospective. A timeline and retrospective from a core contributor

Drupal 8 Development Retrospective. A timeline and retrospective from a core contributor Drupal 8 Development Retrospective A timeline and retrospective from a core contributor 2011 2016 Drupal 7, Gates & Initiatives DrupalCon Chicago 2011, Drupal 8 development starts immediately. Dries discusses

More information

White Paper On. Single Page Application. Presented by: Yatin Patel

White Paper On. Single Page Application. Presented by: Yatin Patel White Paper On Single Page Application Presented by: Yatin Patel Table of Contents Executive Summary... 3 Web Application Architecture Patterns... 4 Common Aspects... 4 Model... 4 View... 4 Architecture

More information

ECG-1615A. How to Integrate IBM Enterprise Content Management Solutions With Microsoft SharePoint and IBM Connections. elinar.com

ECG-1615A. How to Integrate IBM Enterprise Content Management Solutions With Microsoft SharePoint and IBM Connections. elinar.com ECG-1615A How to Integrate IBM Enterprise Content Management Solutions With Microsoft SharePoint and IBM Connections Presentation index The Players The Problem IBM Standard Integration Options IBM Content

More information

Design principles of the Drupal CSC website

Design principles of the Drupal CSC website CERN IT Department Report Design principles of the Drupal CSC website Stanislav Pelák Supervisor: Giuseppe Lo Presti 26th September 2013 Contents 1 Introduction 1 1.1 Initial situation.........................

More information

MAGENTO TRAINING PROGRAM

MAGENTO TRAINING PROGRAM Design Integration Guideline MAGENTO TRAINING PROGRAM Contents 1 Standard development workflow 32 Prepare working environment 3 Layout comprehension 34 Introduce Block 5 Understand header and footer elements

More information

Migrating into Drupal 8 Migrando a Drupal 8

Migrating into Drupal 8 Migrando a Drupal 8 Migrating into Drupal 8 Migrando a Drupal 8 Ryan Weal // Novella Chiechi Kafei Interactive Inc. Montréal Québec Canada ryan@kafei.ca // novella@kafei.ca https://www.drupal.org/node/2348505 http://twitter.com/ryan_weal

More information

Apache Sling A REST-based Web Application Framework Carsten Ziegeler cziegeler@apache.org ApacheCon NA 2014

Apache Sling A REST-based Web Application Framework Carsten Ziegeler cziegeler@apache.org ApacheCon NA 2014 Apache Sling A REST-based Web Application Framework Carsten Ziegeler cziegeler@apache.org ApacheCon NA 2014 About cziegeler@apache.org @cziegeler RnD Team at Adobe Research Switzerland Member of the Apache

More information

Abdullah Radwan. Target Job. Work Experience (9 Years)

Abdullah Radwan. Target Job. Work Experience (9 Years) Abdullah Radwan LAMP / Linux / PHP / Apache / Ruby / MySQL / ASP.NET / Web Developer Wordpress / Magento / Drupal / C# / Sql Server / HTML / HTML5 / CSS CSS3 / Javascript / jquery / Prototype / SEO Target

More information

Project Information. Project Management and Hosting Active Collab and Google Docs were used for the project management tasks on the project.

Project Information. Project Management and Hosting Active Collab and Google Docs were used for the project management tasks on the project. In August 2010 Appnovation Technologies was chosen by Rainforest Alliance to re-create their website in the Drupal platform CMS while keeping all existing content. Appnovation was chosen to develop the

More information

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA Step by step guide Step 1: Purchasing a RSMembership! membership Step 2: Download RSMembership! 2.1. Download the component 2.2. Download RSMembership! language files Step 3: Installing RSMembership! 3.1:

More information

Bricks Architecture Technical Whitepaper

Bricks Architecture Technical Whitepaper 1 20steps Version: December 2014 Bricks Architecture Technical Whitepaper by Helmut Hoffer von Ankershoffen (Owner & CTO) Marc Ewert (Chief Software Architect & Co-CTO) Zimmerstraße 26 Aufgang B 8th Floor

More information

Building and Deploying Web Applications

Building and Deploying Web Applications Building and Deploying Web Applications Dal Hunter and Jeff Shaner Friday, Nov 6 10:30-12:00 Agenda Product overview Web AppBuilder for ArcGIS tour What s New July 2015 ArcGIS Online update Customization

More information

EZ PLATFORM DESIGN AND DEVELOP CONTENT-DRIVEN WEBSITES AND APPLICATIONS

EZ PLATFORM DESIGN AND DEVELOP CONTENT-DRIVEN WEBSITES AND APPLICATIONS EZ PLATFORM DESIGN AND DEVELOP CONTENT-DRIVEN WEBSITES AND APPLICATIONS WANT TO BUILD CONTENT-RICH WEBSITES AND APPS BETTER, FASTER AND EASIER? ez gives you modern architecture and flexibility so you can

More information

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications.

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. 20486B: Developing ASP.NET MVC 4 Web Applications Course Overview This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. Course Introduction Course Introduction

More information

Site Audit (https://drupal.org/project /site_audit) Generated on Fri, 22 Aug 2014 15:14:09-0700

Site Audit (https://drupal.org/project /site_audit) Generated on Fri, 22 Aug 2014 15:14:09-0700 Drupal appears to be installed. [localhost] local: chown -R 1a9aa21dc76143b99a62c9a3c7964d3f /srv/bindings /1a9aa21dc76143b99a62c9a3c7964d3f/.drush/* [localhost] local: time -p su --shell=/bin/bash --command="export

More information

Introduction to Module Development

Introduction to Module Development Introduction to Module Development Ezra Barnett Gildesgame Growing Venture Solutions @ezrabg on Twitter ezra-g on Drupal.org DrupalCon Chicago 2011 What is a module? Apollo Lunar Service and Excursion

More information

How We Did It. Unique data model abstraction layer to integrate, but de-couple EHR data from patient website design.

How We Did It. Unique data model abstraction layer to integrate, but de-couple EHR data from patient website design. EHR Accessibility The Big Idea: Provide a standardized and improved user experience for ALL disabled and abled patients while interacting with their providers Electronic Health Records System (EHR). The

More information

Quick Start Guide Mobile Entrée 4

Quick Start Guide Mobile Entrée 4 Table of Contents Table of Contents... 1 Installation... 2 Obtaining the Installer... 2 Installation Using the Installer... 2 Site Configuration... 2 Feature Activation... 2 Definition of a Mobile Application

More information

Thursday, November 1, 12 THE LEADER IN DRUPAL PLATFORM DESIGN AND DEVELOPMENT

Thursday, November 1, 12 THE LEADER IN DRUPAL PLATFORM DESIGN AND DEVELOPMENT THE LEADER IN DRUPAL PLATFORM DESIGN AND DEVELOPMENT OPEN ATRIUM 2.0 OPEN ATRIUM 2.0 Mike Potter Phase2 Technology mpotter on Drupal.org mpotter@phase2technology.com openatrium@phase2technology.com OPEN

More information

Enterprise Application Development In Java with AJAX and ORM

Enterprise Application Development In Java with AJAX and ORM Enterprise Application Development In Java with AJAX and ORM ACCU London March 2010 ACCU Conference April 2010 Paul Grenyer Head of Software Engineering p.grenyer@validus-ivc.co.uk http://paulgrenyer.blogspot.com

More information

Kentico CMS 7.0 Intranet Administrator's Guide

Kentico CMS 7.0 Intranet Administrator's Guide Kentico CMS 7.0 Intranet Administrator's Guide 2 Kentico CMS 7.0 Intranet Administrator's Guide Table of Contents Introduction 5... 5 About this guide Getting started 7... 7 Installation... 11 Accessing

More information

Knowledge Spaces. v9.1 Feature Review. Bob Peery, Director, Product Management

Knowledge Spaces. v9.1 Feature Review. Bob Peery, Director, Product Management Knowledge Spaces v9.1 Feature Review Bob Peery, Director, Product Management Welcome Thank you for joining today! Submit questions via the WebEx Chat panel Session will be recorded and sent to attendees

More information

Shipbeat Magento Module. Installation and user guide

Shipbeat Magento Module. Installation and user guide Shipbeat Magento Module Installation and user guide This guide explains how the Shipbeat Magento Module is installed, used and uninstalled from your Magento Community Store. If you have questions or need

More information