133
© All rights reserved. Zend Technologies, Inc . Zend Framework Workshop By Kevin Schroeder Technology Evangelist Zend Technologies

Zend Framework Workshop

Embed Size (px)

DESCRIPTION

Slides from the Zend Framework workshop I did at OSIdays in Chennai, India

Citation preview

Page 1: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend Framework Workshop

By Kevin Schroeder

Technology Evangelist

Zend Technologies

Page 2: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

About me

• Kevin Schroeder Technology Evangelist for Zend

Programmer

Sys Admin

Author• IBM i Programmer’s Guide to PHP

• You want to do WHAT with PHP?

Race Ferraris on the weekend• My Honda has a dismal win record

Page 3: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Follow us! Zend Technologies

http://twitter.com/zend

http://twitter.com/kpschrade (me!)

www.eschrade.com

Page 4: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

A quick note on Zendcon… BE THERE!!

•Learn PHP best practices•Discover new advances •Gain new insights•Deploy and scale large PHP applications•Explore new technologies like NoSQL and Cloud Computing•Learn how to effectively leverage Zend Framework and Zend Framework 2.0

Page 5: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

What does Zend do

• Zend Framework

• Zend Studio (8.0 in public beta 1)

• Zend Server Monitoring,

Code tracing (freaking cool!!)

Job queuing

HA Session Clustering

• Zend Server Cluster Manager

• Lots and lots of training

• PHP, Zend Framework certifications

Page 6: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Agenda

• The Basics Introduction Coding Standards Installing Zend

Framework Autoloading Zend_Session Zend_Config Zend_Mail Zend_Validate Zend_Filter Zend_Translate Zend_Form MVC

•A little more advanced

• Zend_Application

• Zend_Db

• Table/Row Data Gateway

•Services

• Theory

• Zend_Json_Server

• Zend_Amf

• Zend_Service_Twitter

Page 7: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Why do we use PHP?

Page 8: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Sample PHP Script

<html>

<head></head>

<body>

<?php

function questionp($input) {

return strrpos ( $input, '?' ) === strlen ( $input ) - 1;

}

?>

<?php

if (! isset ( $_POST ['submit'] )) {

// if the "submit" variable does not exist the form has not been submitted, so display form

?>

<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">

Enter your question: <input name="question" size="50">

<input type="submit" name="submit" value="Ask">

</form>

<?php

} else {

// if the "submit" variable exists the form has been submitted, so look for and process form data,

// displaying the result

if(questionp($_POST['question'])) {

if(rand(0, 1)): echo 'yes'; else: echo 'no'; endif;

} else {

echo 'Don\'t you know what a question is?';

}

}

?

PHP: Past and Present

| 8

Page 9: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Anatomy of a PHP Application

PHP: Past and Present

| 9

Presentation

Application Control

Database Access

Business Logic

Presentation

Application Control

Business Logic

Presentation

Page 10: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Anatomy of a PHP Application

PHP: Past and Present

| 10

index.php3

index.php3

index.php3

index.php

Page 11: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Anatomy of a PHP Application

PHP: Past and Present

| 11

index.php3

index.php3

index.php3

index.php

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3index.php3

index.php3

index.php3

index.php

Page 12: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Anatomy of a PHP Application

PHP: Past and Present

| 12

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3index.php3

index.php3

index.php3

index.php

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3index.php3

index.php3

index.php3

index.php

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3index.php3

index.php3

index.php3

index.php

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php

Page 13: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Anatomy of a PHP Application

PHP: Past and Present

| 13

|

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3 index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

index.php3

Page 14: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Anatomy of a Modern PHP Application

| Apr 12, 2023

PHP: Past and Present

| 14

Presentation

Database Access

Business Logic

Application Control

Something.phtml

Something.phtml

Something.phtml

Something.phtml

Something.phtml

Something.phtml

Something.phtml

Something.phtml

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Something.p

hp

Page 15: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Make everything as simple as possible, but no simpler.

- Albert Einstein

Zend Framework

Page 16: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

PHP Problems

• How can we promote reuse and standards in a strong culture of decentralization?

• How can we propagate best practices across a community of cowboy coders numbering in the millions?

• How do we manage the newfound complexity of large PHP applications?

• How do we promote integration with commercial technologies in a community that has been developed in parallel to these technologies?

• How do we write better PHP applications?

| Apr 12, 2023

Name of this section

| 16

Page 17: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

The Answer?

Name of this section

| 17

Page 18: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

What is Zend Framework?

• An open source, MVC-based, full-featured PHP framework

• A set of use-at-will components; a component library

• A vehicle through which Zend disseminates best practices

• A community

• A philosophy

• A standard

• A gateway to the larger PHP community

| Apr 12, 2023

PHP: Past and Present

| 18

Page 19: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

What sets ZF apart?

• High quality code; all components have unit test coverage of > 80% (both lines and branches) and the tests are run against the framework continuously

• A use-at-will architecture that allows developers to mix and match their favorite technologies

• A contribution process that both guarantees quality and encourages active community contributions while protecting against intellectual property claims

• We only tackle problems when we can bring value that isn’t currently available in the PHP community

• We believe that web services must be first-class citizens for today’s Web 2.0 applications

| Apr 12, 2023

PHP: Past and Present

| 19

Page 20: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Our Technology Partners

… and more

Page 21: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Supported by All Popular PHP IDEs

Page 22: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Over 50 Books Written

Page 23: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

74% of all Zend Framework Applications are Business-Critical

* Zend Framework Developer Survey, Dec. 2009

Page 24: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Dojo Integration

In May, 2008 Zend announced a collaboration between the Zend Framework and Dojo Toolkit projects. Zend Framework 1.6 contains the first integration points between these 2 projects:

• JSON-RPC Server

• dojo.data Envelopes

• Dojo View Helper

• Dijit integration with Zend_Form & Zend_View

• Dojo Library Re-distribution

+

Page 25: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.Autumn, 2008

Download & Install Zend Framework• Download the latest version of Zend Framework and extract the contents of the library folder to your project's library directory

http://framework.zend.com/download

• You should now find the top-level Zend directory which contains all Zend Framework components under your library directory

• That's it! Zend Framework is now installed and ready to use

Page 26: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.Autumn, 2008

What’s in Zend Framework?

MVC web app framework(model-view-controller)

Database access

Lucene-compatible Search engine

Input filtering and validation

Authentication

Access control

Session handling

I18N, locales, translation

PDF file reading and writing

HTTP client

Form Handling

XML-RPC

REST web services

RSS and Atom feeds

Logging

Mail reading and sending

Caching

Configuration files

Command-line option parsing

MUCH, MUCH more!

• Simple, convenient object-oriented solutions to common web application development tasks:

Page 27: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.Autumn, 2008

Zend Framework Overview

Page 28: Zend Framework Workshop

© 2009 All rights reserved. Zend Technologies, Inc.

WHERE TO START

Page 29: Zend Framework Workshop

• Don’t start with MVC first• There are MANY libraries that you can utilize first• A trustworthy saying

“Don’t use a framework until you know why you need a framework”

• Don’t use MVC until you know you need MVC Or have at least experienced the pain of managing a large

application without it

Page 30: Zend Framework Workshop

Things to know

• All ZF-based classes start with Zend_• If you build a library that utilizes ZF, do not prefix

your classes with that (breaks coding standards)• Use the autoloader• Use plugin loaders• Start small

Page 31: Zend Framework Workshop

Coding Standards

• Files with ONLY PHP code start with <?php and have no closing tag

• Indentation uses 4 spaces, tabs not allowed• Lines end with Unix EOL• Class naming standards changed after 1.9 to prepare for

PHP 5.3 and ZF 2• Function/method declarations • Anything marked private/protected is prefaced with an

underscore (private $_var = null)• Numbers are permitted in variable/method/function names,

but are not recommended

Page 32: Zend Framework Workshop

Coding Standards

• Globally defined variables/functions are allowed, but not recommended (use registry/static methods instead)

• Variables/methods/functions are named using camelCase There is some debate one what a camel looks like when using an acronym

(e.g. PDF)

• Global constants are allowed, but discouraged. Use class constants instead

• Class constants should be UPPER_CASE_WITH_UNDERSCORE

• “Variable substitution is {$allowed} but not ${allowed}”• ‘If no variable substitution is needed then use single quotes’• For arrays, negative index keys are not allowed

Page 33: Zend Framework Workshop

Coding Standards

• One class per file• Braces

Final brace is always on its own line Method/function calls start on the next line Conditional statements/loops start on the same line

• Break clauses MUST have a default• All functions/methods/class members MUST have

a PHPDoc block• Read the coding standards at

http://framework.zend.com/ in the docs

Page 34: Zend Framework Workshop

How to start?

• Start simple, use utility classes Zend_Loader Zend_Date Zend_Config Zend_Session Zend_Translate Zend_Validate Zend_Filter Zend_Form (!) Others

Page 35: Zend Framework Workshop

© 2009 All rights reserved. Zend Technologies, Inc.

UTILITY CLASSES

Page 36: Zend Framework Workshop

Zend_Loader

• Used to include files for classes that have not been loaded yet

• It searches the include_path for the requested class

• Two types of loaders Autoloader

• Just a standard autoloader PluginLoader

• Used for loading classes based off of a prefix

Page 37: Zend Framework Workshop

Zend_Loader_Autoloader

• Initialize• Zend_Loader_Autoloader::getInstance();• Register pseudo namespace• Zend_Loader_Autoloader::getInstance() ->registerNamespace('Myapp_');

• Set the autoloader for all namespaces• Zend_Loader_Autoloader::getInstance() ->setFallbackAutoloader(true);

Page 38: Zend Framework Workshop

Zend_Loader_Pluginloader

• Used to load named classes, not autoload• Used extensively by several ZF components

Page 39: Zend Framework Workshop

Zend_Loader_Pluginloader

/library/MyApp/MyComponent/Classone.php/library/MyApp/AnotherComponent/Classtwo.php

$loader = new Zend_Loader_PluginLoader();$loader->addPrefixPath( 'MyApp_MyComponent', 'MyApp/MyComponent');

$loader->addPrefixPath( 'MyApp_AnotherComponent', 'MyApp/AnotherComponent');

Page 40: Zend Framework Workshop

Zend_Loader_Pluginloader

$loader->load('Classone');$loader->load('Classtwo');

Page 41: Zend Framework Workshop

Zend_Session

• Use this instead of $_SESSION. Why?• Works much better for complex applications• Allows for easier separation of components

$ns = new Zend_Session_Namespace('Component-1');

$ns = new Zend_Session_Namespace('Component-2');

Page 42: Zend Framework Workshop

Zend_Session

• Good API (standard session ext has very minimal API)

public function lock();public function unlock();public function apply($callback);public function applySet($callback);public function setExpirationSeconds( $seconds, $variables = null);public function setExpirationHops( $hops, $variables = null, $hopCountOnUsageOnly = false);

Page 43: Zend Framework Workshop

Zend_Config

• Provides a way of dealing with configuration• A consistent API for getting and setting values• Implements Countable, Iterator (uses SPL)• Existing mechanisms

PHP Arrays (great with opcode caches) INI Files XML Files Your own (Don’t use the DB)

Page 44: Zend Framework Workshop

Zend_Config

• Generally used for Database adapter credentials Caching options Paths

• Zend_Application uses a LOT of configuration

Page 45: Zend Framework Workshop

Using Zend Config

• You can retrieve data by section

Page 46: Zend Framework Workshop

Using Zend_Config

• You can have inheritance between sections

• Best practice: inherit from [production]

Page 47: Zend Framework Workshop

Zend_Validate

• Used to provide integratable validation tooling Don’t build it yourself!!

• Some example validators Email Address Credit Card String Length Host name And about 80 others

• Chainable using new Zend_Validate()

Page 48: Zend Framework Workshop

Zend_Validate – Building your own

• Must implement Zend_Validate_Interface• Zend_Validate_Abstract is a better choice to

extend• Constructor is optional, used for passing options

Page 49: Zend Framework Workshop

Zend_Filter

• Used to filter data• Some examples

HtmlEntities Encrypt/Decrypt StripTags StripNewLines

Page 50: Zend Framework Workshop

Zend_Form

• New to ZF 1.5 (one of the best features)• Handles

Rendering the form Escaping your output Filtering your input Validating your data

Page 51: Zend Framework Workshop

Zend_Form – Simple usage

$form = new Zend_Form();$form->setMethod('POST');$form->setAction('/submitform.php');$form->setView(new Zend_View());

$form->addElement('text', 'email');$form->addElement('text', 'name');$form->addElement('submit', 'submit');echo $form;

Page 52: Zend Framework Workshop

Zend_Form – Less simple usage

• Forms and form elements have a LOT of options

$form->addElement( 'text', 'email', array( 'label' => 'Email', 'required' => true ));

Page 53: Zend Framework Workshop

Zend_Form – Adding validators

$form->addElement( 'text', 'email', array( 'label'=> 'Email', 'required'=> true, 'validators'=> array( 'EmailAddress' ) ));• Don’t use validator objects; name them instead

But make sure to test that they work

Page 54: Zend Framework Workshop

Zend_Form – Adding filters

$form->addElement( 'text', 'name', array( 'label'=> 'Name', 'required'=> true, 'filters'=> array( 'Alpha' ) ));

Page 55: Zend Framework Workshop

Zend_Form - trick

• All of the configuration parameters are passed to getters and setters

• Want to know what configuration options are available? Look at the setters setLabel() = array(‘label’ => ‘name’) setValidators() setName() setOrder() setRequired()

Page 56: Zend Framework Workshop

Zend_Form – Architecting your app

• Best practices Subclass Zend_Form

• Very reusable• Very testable

Create forms to match your existing data structure• Have pre-defined forms that match up to existing models

Let the designers worry about layout• Zend_Form allows for CSS heavy design (ok, that’s good and

bad )

Page 57: Zend Framework Workshop

Zend_Form – Architecting your app

• If using with MVC Place in /application/forms Preface with Form_ Use a plugin loader

• If not Place it in a standard library path and use the autoloader

Page 58: Zend Framework Workshop

Zend_Log

• Concepts Logger – usually an instance of Zend_Log Writer – the mechanism which writes the log entry to the

storage medium• Must extend Zend_Log_Writer_Abstract

Filter – used to determine IF a log entry should be sent to the writer

• Must implement Zend_Log_Filter_Interface Formatter – creates the text string that will be sent to the

writer

Page 59: Zend Framework Workshop

Zend_Log

• Several logging levels (BSD syslog)

EMERG - Emergency: system is unusable

ALERT - Alert: action must be taken immediately

CRIT - Critical: critical conditions

ERR - Error: error conditions

WARN - Warning: warning conditions

NOTICE - Notice: normal but significant condition

INFO - Informational: informational messages

DEBUG - Debug: debug messages

Page 60: Zend Framework Workshop

Zend_Log

• Available writers• Db• Firebug• Mail• Mock

• Can write to multiple writers at a time• Each writer can have multiple filters

•Null•Stream•Syslog•ZendMonitor

Page 61: Zend Framework Workshop

© 2009 All rights reserved. Zend Technologies, Inc.

MVC

Page 62: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

MVC

• Model An object that represents a unit of data/functionality

• View The user interface

• Controller Where your business logic lies

Page 63: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

MVC

• It’s best to not use “pure” MVC

• Use the “thin controller” architecture

• Place as much of your business logic in the model as possible

• Reduces code duplication

• Enhances code testability

Page 64: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Controller

• Component where the Controller portion of MVC resides

• Several concepts Front Controller

Action Controller

Plugins

Helpers

Page 65: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Controller – Start to finish

• Front controller

• Router

• Dispatcher

• Action controller

Page 66: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

MVC Request Lifecycle

• dispatch() – Starts the dispatch process

• routeStartup() – Called prior to parsing the URL for the request

• routeShutdown() – Called immediately after the module, controller and action have been determined

• dispatchLoopStartup() – Called immediately before the dispatch loop starts

• preDispatch() – Called at the beginning of each dispatch loop

Page 67: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

MVC Request Lifecycle

• init() – Called from inside the controller’s constructor

• preDispatch() – Called for each action helper that is currently initialized

• preDispatch() – A hook on the current controller object

• *Action() – The individual action that was requested during the routing process

• postDispatch() – A hook in the current controller object

Page 68: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

MVC Request Lifecycle

• postDispatch() – Called for each loaded action helper

• postDispatch() – Called for each plugin

• dispatchLoopShutdown() – The last hook to be executed

Page 69: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Front Controller

• The “access point” for the application

Page 70: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Action Controllers

• Extends Zend_Controller_Action

• Access $_GET, $_POST via request object

• Pass output/headers to response object

Page 71: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Accessing an action controller

Page 72: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Controller Plugins

• Allows you to execute functionality at some point along the execution chain

• Plugins are typically not interactive like helpers

• Need to extend Zend_Controller_Plugin_Abstract

Page 73: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Controller Plugins – Hooks

dispatchLoopShutdown()

postDispatch(Zend_Controller_Request_Abstract $request)

preDispatch(Zend_Controller_Request_Abstract $request)

dispatchLoopStartup(Zend_Controller_Request_Abstract $request)

routeShutdown(Zend_Controller_Request_Abstract $request)

routeStartup(Zend_Controller_Request_Abstract $request)

Page 74: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Controller Plugin - Example

class Esc_Application_Plugin_Maintenanceextends Zend_Controller_Plugin_Abstract

{ public function routeShutdown(Zend_Controller_Request_Abstract

$request) { $request->setActionName('index'); $request->setModuleName('default'); $request->setControllerName('maintenance'); } }

Page 75: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Controller Helpers

• Inject on-demand functionality into action controllers Cache

Context Switching (“Do I use HTML, JSON, XML?”)

View Renderer

Build your own

• Minimize the need to extend Zend_Controller_Action

• Has init(), preDispatch(), postDispatch() hooks Only called if a helper object has been instantiated

Page 76: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Controller Helpers – Building your own

• Must extend Zend_Controller_Action_Helper_Abstract

• Must be registered with the helper brokerZend_Controller_Action_HelperBroker::addPath(APPLICATION_PATH.'/helpers','Helper'

);• Call from the controller

$this->_helper->Sendemail('Kevin Schroeder','[email protected]','We did something in the last request'

);

Page 77: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_View

• Used to handle the view (user interface) from BL

• Older style apps have the two mixed

• Can be used separately from MVC (if you like) Useful if you want to re-use view helpers or form

components

• If using MVC, generally stored in controllers/../views/script

Page 78: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_View – Step 1: Assigning data

$data = array( array( 'author' => 'Kevin Schroeder', 'title' => 'The IBM i Programmer\'s Guide to PHP' ), array( 'author' => 'Kevin Schroeder', 'title' => 'You want to do WHAT with PHP?' ));

Zend_Loader::loadClass('Zend_View');$view = new Zend_View();$view->books = $data;

echo $view->render('booklist.php');

Page 79: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_View – Step 2: Rendering data

<?php if ($this->books): ?> <table> <tr> <th>Author</th> <th>Title</th> </tr> <?php foreach ($this->books as $key => $val): ?> <tr> <td><?php echo $this->escape($val['author']) ?></td> <td><?php echo $this->escape($val['title']) ?></td> </tr> <?php endforeach; ?> </table><?php else: ?><p>There are no books to display.</p><?php endif;?>

Page 80: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Using the ViewRenderer

• An action helper that is loaded by default

• Executes in the postDispatch() hook

• Examines the controller/action combination and automatically runs the proper view script

IndexController::indexAction()/views/scripts/index/index.phtml

Page 81: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

View Helpers

• View helpers make your life easier

• Used to provide additional functionality similar to an action helper, but for the view

• Referenced via the $this object when in a view

• Loaded using a plugin loader

• Used to keep logic out of the view (very important) Try to limit views to if and foreach statements

Page 82: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

View Helpers Examples

• Easy translation integration

echo $this->translate('Hello World');

• Capturing JS so it can be output elsewhere

<?php $this->headScript()->captureStart(); ?>

alert('Hello World');

<?php $this->headScript()->captureEnd(); ?>

Page 83: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

View Helpers

• You can build your own!

• Does not need to implement any interface or abstract class

• Generally placed in /views/helpers (configurable)

• Must have a method name defined as the same name of the class My_Helper_Sendemail must have a method called

sendemail().class My_Helper_Sendemail{

public function sendemail($to, $subject, $message){

// Haven't gotten to Zend_Mail yet :-)mail($to, $subject, $message);

}}

Page 84: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Using Partials

• Partials are used to render small, re-usable portions of the view

• Handled via a view helper Partial

PartialLoop• Very useful for any iterative functionality

• Arrays

• Zend_Db_Table_Rowset

• Anything implementing the Iterator interface

Page 85: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

The Model

• Unlike other frameworks it is any class that represents your data or business logic

• Could be a service object

• Could be a text file

• Could be an LDAP entry

• Could be a Zend_Db object

Page 86: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Db

• Database abstraction layer (as opposed to access abstraction layer)

• Several different database vendors are supported

• Abstractions for common functionality such as select, insert, update, delete, limit, offset or transactions

• Connects to the database on demand

• Adapter instance is usually created via Zend_Db::factory()

• Integrated database profiling

Page 87: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Db_Select

• Provides a vendor-independent mechanism for creating select statements

• Very useful, but be careful of the unintended consequences of abstraction

$select->from('table') ->where('table_id = ?', $_GET[‘val']);

Output: SELECT `table`.* FROM `table` WHERE (table_id = ?)

• Supports multiple join types, where, group by, order, etc.

Page 88: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

ORM

• Uses the Table/Row Data Gateway Design Patterns

• One class to represent the table

• One class to represent a row in the table

Page 89: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

ORM – The Table

• Table classes extend Zend_Db_Table_Abstract

• Handles references to other tables class Model_DbTable_Comment extends Zend_Db_Table_Abstract{ protected $_name = 'comment'; protected $_rowClass = 'Model_Comment'; protected $_referenceMap = array( 'Content' => array( 'columns' => 'content_key', 'refTableClass' => 'Model_DbTable_Content', 'refColumns' => 'content_key' ), );}

Page 90: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

ORM – The Row

• Model classes extend Zend_Db_Table_Row_Abstract

class Model_City extends Zend_Db_Table_Row_Abstract{}• Row data is accessed via a __get call

• Good idea to use getters and setters to access them (great for code completion)

Page 91: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Fetching Data

$dbTable = new Model_DbTable_Comment();$comment = $dbTable->find($_GET['id']);

$dbTable = new Model_DbTable_Comment();$select = $dbTable->select() ->where('active = ?', $_GET['active']);$comment = $dbTable->fetchRow()->current();

Page 92: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

ORM - Relationships

• Retrieve an instance of the row class

• Call a wacked method call which calls __call() and figures out which db table object to load and query on.

class Model_DbTable_Comment extends Zend_Db_Table_Abstract{ protected $_name = 'comment'; protected $_rowClass = 'Model_Comment'; protected $_referenceMap = array( 'Content' => array( 'columns' => 'content_key', 'refTableClass' => 'Model_DbTable_Content', 'refColumns' => 'content_key' ), );}

Page 93: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Calling a related object

$tabs = $comment ->findModel_DbTable_TagViaModel_DbTable_TagContent();

• Write a getter that defines that in your model

class Model_Content extends Esc_ModelAbstract{ public function getTags() { return $this ->findModel_DbTable_TagViaModel_DbTable_TagContent() }}

Page 94: Zend Framework Workshop

© 2009 All rights reserved. Zend Technologies, Inc.

UNIT TESTING MVC

Page 95: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Unit Testing

• Why Unit Test? Simplify maintenance

It defines expectations

It describes behaviors identified by the application

It tells us when new changes break existing code and behaviors

Page 96: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Terms

• Unit The piece of code you are testing

• Test A piece of code that calls the piece of code you’re testing

• Assertion Validating return types or results of the test

• Code Coverage A report on which lines of code have been tested

• Used to determine additional tests that need to be written

• Continuous Integration The continuous application of quality control, i.e. unit tests

Page 97: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Testing the model

• The easiest of all

• Test classes typically extend PHPUnit_Framework_TestCase

Page 98: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Testing the controller

• Setting up the test Test class extends Zend_Test_PHPUnit_ControllerTestCase

If testing Zend_Application make sure you add the bootstrap in the setUp() method

Make sure you reset() your tests• Response

• Request

• Layout

• Helper Broker

Page 99: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Testing the controller

• You can test Routing (also good for checking authorization)

Response codes

Output (we’ll look at that next)

Page 100: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Testing the view

• Best tested through the controller

• Define which HTML elements need to be present on the page and verify that they exist or have certain values

• Can be done using CSS Selectors

Xpath Queries

Page 101: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Layout

• Implements Two Step View pattern

• Same name as a dance in Texas, but that’s not important

Page 102: Zend Framework Workshop

© 2009 All rights reserved. Zend Technologies, Inc.

A LITTLE MORE ADVANCED…

Page 103: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Application

• Used for defining an application context

• Zend_Controller_Front just handled the brokering of the request

• Zend_Application handles Bootstrapping (dev/testing/staging/production)

Creating the autoloader

Dispatching

Resource creation

Page 104: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Bootstrapping

• Implements Zend_Application_Bootstrap_Bootstrapper Used to bootstrap (set up the environment) and then

execute the request

Most applications can simply extend Zend_Application_Bootstrap_Bootstrap• This is what we will assume you are using

Page 105: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Bootstrapping

• Resource methods

• Use the resource autoloader Zend_Application_Module_Autoloader placed in

_initAutoload()

• Order

1. Zend_Application::bootstrap()

2. Bootstrap class instantiated

3. Any methods starting with _init() are called and the return value is placed in a container

4. Action retrieves the resource through calling getInvokeArg() and naming the resource

Page 106: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Bootstrapping

• Bootstrap class is instantiated every time so DON’T put everything there (horrible for performance, PHP loves lazy loading)

• One option is to override hasResource() method in Bootstrap so that it instantiates a resource only when it is needed Best practice? Don’t know. Kevin’s practice? Yes.

Therefore it is good

Page 107: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Resources

• Pluggable pieces of functionality tied to the application

• Ties functionality directly in with the configuration

• Sample of existing plugins Cachemanager

Db

Log

Frontcontroller

Translate

Page 108: Zend Framework Workshop

© 2009 All rights reserved. Zend Technologies, Inc.

SERVICES

Page 109: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Service Theory

• Many services have a very similar execution flow

1. Receive request

2. Find class that can service the request

3. Instantiate object that can handle the request

4. Return result to client

Why re-invent the wheel?

Page 110: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Server

• Base component for several service-oriented components

• Primarily used for reflection and a standard interface Actual implementation is left to component

Page 111: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_*_Server

• Several components implement Zend_Server_Abstract

• Useful for standardized web service implementation

foreach (glob(APPLICATION_PATH.'/mappers/*.php') as $dir) {$name = substr(basename($dir), 0, -4); $class = 'Mapper_' . $name; $serviceHandler->setClass($class, $name);}echo $serviceHandler->handle();

• Using data mappers are your key to happiness

$serviceHandler = new Zend_Json_Server();$serviceHandler = new Zend_Amf_Server();$serviceHandler = new Zend_Xml_Server();

Page 112: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.112

Writing Re-usable Models

• Write your application logic once, but use it in many different ways

• Why? MVC is only one consumer

Can be called by job scripts, message systems, queues, etc.

Service endpoints can act as consumers(Hint: JSON-RPC is a good way to feed your Ajax applications)

Page 113: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

What?

Domain Models The individual resources and units of work in your

application E.g. user, team, backlog, sprint, etc. E.g., object relations, transactions, queries

Service Layers Public API of the application; i.e., the behaviors you

wish to expose Logic for injecting dependencies

Page 114: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Data Access Objects

Data Mappers

Domain Mappers

Service Layer

Service Layer in Perspective

Page 115: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Benefits to Service Layers

Allows easy consumption of the application via your MVC layer

Allows easy re-use of your application via services

Write CLI scripts that consume the Service Layer

Page 116: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

What kind of application logic?

Validation and filtering Authentication and Authorization Transactions and interactions between model

entities

Page 117: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.117

class PersonService{ public function create(array $data) { $person = new Person(); if (!$data = $this->getValidator() ->isValid($data) ) { throw new InvalidArgumentException(); } $person->username = $data['username']; $person->password = $data['password']; $person->email = $data['email']; $this->getMapper()->save($person); return $person; }}

class PersonService{ public function create(array $data) { $person = new Person(); if (!$data = $this->getValidator() ->isValid($data) ) { throw new InvalidArgumentException(); } $person->username = $data['username']; $person->password = $data['password']; $person->email = $data['email']; $this->getMapper()->save($person); return $person; }}

Page 118: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Return objects implementing __toString() and/or toArray()

Easily converted to a variety of formats for your XHR clients

JSON, XML

Easy to cache Strings and arrays serialize and deserialize easily

Page 119: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Returning data

class Foo{ public function __toString() { return 'foo'; }

public function toArray() { $array = array(); foreach ($this->_nodes as $node) { $array[] = $node->name; } return $array; }}

119

Page 120: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Json

• Useful for encoding/decoding data

$data = range(1, 20);echo Zend_Json::encode($data);• meh

• Zend_Json_Server is neato

• JSON-RPC implementation

• Supported by Dojo

Jquery (via plugin)

Several more

Page 121: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Json

• Server Side$serviceHandler = new Zend_Json_Server();$serviceHandler->setClass('Peaks');echo $serviceHandler->handle();

• Client Sidedojo.require("dojo.io.script");dojo.require("dojo.rpc.JsonService");

dojo.addOnLoad(function(){rpc = new dojo.rpc.JsonService("/json-rpc", "Peaks");

call = rpc["Peaks.getStates"]().addCallback(function(data) {/*todo*/});

});

Page 122: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Amf

• AMF = Action Message Format

• Proprietary, Open Spec protocol developed by Adobe

• Used primarily for implementing a service that communicates with Flash applications

• Zend_Amf_Server extends Zend_Server_Abstract Works well with switching between JSON, XML-RPC

AMF supports typed parameters and return values

• Setting up an AMF interface in Flash Builder/Zend Studio

Page 123: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Service_Twitter

• Stupid easy Twitter access

$twitter = new Zend_Service_Twitter('mytwitterusername','password‘

);

$response = $twitter->status->update('OSI Days Rocks!‘

);

Page 124: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Zend_Service_Twitter

• Public API calls often don’t even require authentication

$ts = new Zend_Service_Twitter_Search('json');$res = $ts->search($this->_search,array( 'since_id'=> (int)$id )

);

$text = array();foreach ($res['results'] as $result) { $text[] = $result['text'];}

Page 125: Zend Framework Workshop

© 2009 All rights reserved. Zend Technologies, Inc.

ZEND FRAMEWORK 2.0

Page 126: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

What will ZF 2 be like?

• Goals Ease the learning curve

Make extending the framework trivially simple

Improve baseline performance of the framework

Simplify maintenance of the framework

Be an exemplar of PHP 5.3 usage

Provide mechanisms for using just the parts of the framework needed

Page 127: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

What will ZF 2 be like?

• Roadmap Standardized Option Keys

Exceptions. Each component will have it's own Exception interface

Design By Contract

Elimination of most singletons

Create general-purpose, cross-functional components to reduce duplicate code

Usage of new language features within plugin architectures, specifically __invoke() and closures

Page 128: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

What will ZF 2 be like?

• Roadmap (con’t) Autoload-only.

Full use of Namespaces.

goto. (usage of goto will be evaluated on a case-by-case basis)

Page 129: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

What will ZF 2 be like?

• Should you be thinking about ZF2?

• Not yet

Page 130: Zend Framework Workshop

© 2009 All rights reserved. Zend Technologies, Inc.

THANK YOU!

Page 131: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Follow us!

Zend Technologies

http://twitter.com/zend

http://twitter.com/kpschrade (me!)

Page 132: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Get this information and all the examples at eschrade.com…

Page 133: Zend Framework Workshop

©All rights reserved. Zend Technologies, Inc.

Remember… BE THERE!!

•Learn PHP best practices•Discover new advances •Gain new insights•Deploy and scale large PHP applications•Explore new technologies like NoSQL and Cloud Computing•Learn how to effectively leverage Zend Framework and Zend Framework 2.0