SlideShare a Scribd company logo
1 of 34
A quick look at the Symfony2 Bundle system
Migrating extensions to eZ Publish 5
01/08/2013Presenter: Łukasz Serwatka Slide 2
Extending eZ Publish 5
Presenter
Łukasz Serwatka
Product Management Technical Lead
lukasz.serwatka@ez.no
@lserwatka
 Working with eZ since 1st of March 2005
 Over 10 years of experience with eZ Publish
 Former member of the Engineering team
 eZ Publish & Polish PHP Community Member
 Expert in mobile solutions (mobile applications & mobile strategies)
01/08/2013Presenter: Łukasz Serwatka Slide 3
Extending eZ Publish 5
Preparation
 Drivers for migration (challenges, requirements) - It is very important to
understand the drivers behind a migration effort
 Inventory of current environment - Creating a detailed summary of the
current extension portfolio really helps in terms of understanding the scope of
a migration effort
 Migration service provider - evaluate at least a couple of migration service
providers if you do not have migration skills and staff in-house.
 Migration effort estimate - the estimate depends on many factors such as
extension size, database complexity, components, etc. Usually provided by
the migration service provider.
 Training requirements - Training requirements for existing development
team on the new platform need to be assessed to ensure that they can
support the new environment effectively and can participate in the migration
process if required.
01/08/2013Presenter: Łukasz Serwatka Slide 4
Extending eZ Publish 5
Preparation
 Make in-depth analysis of the existing eZ Publish 4.x extension functionality
and code base, focusing especially on
 External storage (custom tables)
 Configuration (INI settings overrides)
 CLI scripts
 Template overrides
 Datatypes
 Edit handlers
 Workflow events
 AJAX calls
 Translations
 User interface (backend)
 Carefully judge which elements can be natively implemented in eZ Publish 5
and which ones still require the legacy kernel. Not all legacy features are
available in eZ Publish 5 yet, and it is an ongoing process to fill the gaps.
01/08/2013Presenter: Łukasz Serwatka Slide 5
Extending eZ Publish 5
Preparation
 The eZ Publish 5 supported extension points at the moment:
 FieldTypes (with custom tables)
 Templates (view providers for Content, Location and Blocks [since eZ Publish 5.1])
 Services (Persistence API)
 Controllers & Actions (Routes)
 Events
(PostSiteAccessMatchEvent, PreContentViewEvent, APIContentExceptionEvent)
eZ/Publish/Core/MVC/Legacy/LegacyEvents.php
eZ/Publish/Core/MVC/Symfony/MVCEvents.php
01/08/2013Presenter: Łukasz Serwatka Slide 6
Extending eZ Publish 5
New concepts in eZ Publish 5.x
eZ Publish 4.x eZ Publish 5.x
Module Controller, extends
eZBundleEzPublishCoreBundleController
Action & View Action, the method on the Controller to
execute. View is a (Twig) template that
displays the result of the Action.
eZTemplate Twig, new template engine, new syntax
fetch() Render function, HMVC concept, a function
that enables embedding other controller
calls
Extension Bundle in eZ Publish 5 (Symfony2)
CLI eZ Publish 5 ezpublish/console
component for creating command line
interfaces
INI settings YAML, recommended configuration type in
eZ Publish 5
01/08/2013Presenter: Łukasz Serwatka Slide 7
Extending eZ Publish 5
Naming differences between eZ Publish 4.x and 5.x
eZ Publish 4.x eZ Publish 5.x
(Content) Class ContentType
(Content) Class Group ContentTypeGroup
(Content) Class Attribute FieldDefinition
(Content) Object Content (meta info in: ContentInfo)
(Content Object) Version VersionInfo
(Content Object) Attribute Field
(Content Object) Attribute content FieldValue
Datatype FieldType
Node Location
 eZ Publish 5 can be extended thanks to the bundle system
 A Bundle is a directory containing a set of files (PHP files, stylesheets,
JavaScripts, images, ...) that implement a single feature (a blog, a forum, etc)
and which can be easily shared with other developers.
 eZ Publish 5 also provides a command line interface for generating a basic
bundle skeleton:
$ php ezpublish/console generate:bundle –namespace=eZ/TestBundle
01/08/2013Presenter: Łukasz Serwatka Slide 8
Extending eZ Publish 5
01/08/2013Presenter: Łukasz Serwatka Slide 9
Extending eZ Publish 5
Bundle Directory Structure
Bundle Directory Structure Description
Controller/ contains the controllers of the bundle (e.g.
HelloController.php);
DependencyInjection/ holds certain dependency injection extension classes,
which may import service configuration
Resources/config/ houses configuration, including routing configuration
(e.g. routing.yml);
Resources/views/ holds templates organized by controller name (e.g.
Hello/index.html.twig);
Resources/public/ contains web assets (images, stylesheets, etc) and is
copied or symbolically linked into the project web/
directory via the assets:install console command;
Tests/ holds all tests for the bundle.
01/08/2013Presenter: Łukasz Serwatka Slide 10
Extending eZ Publish 5
Bundle Directory Structure – Advanced
Bundle Directory Structure Description
API/ contains the value object definitions, service
interfaces, etc. In short, public API interfaces provided
by your bundle.
Core/ holds field types implementation, persistence related
classes, repository implementations, signal-slot
implementations, etc.
SPI/ (Service Provider Interface) holds interfaces that can
contain one or several implementations around
Persistence (database), IO (file system), FieldTypes
(formerly DataTypes), Limitations (permissions
system), etc.
EventListeners/ holds event listener implementation for both eZ
Publish 5 and LS
Command/ contains Console commands; each file must be
suffixed with Command.php
 Example eZ Publish 5 Bundle architecture
01/08/2013Presenter: Łukasz Serwatka Slide 11
Extending eZ Publish 5
Bundle Directory Structure
 File: eZTestBundle.php
<?php
Namespace eZTestBundle;
use SymfonyComponentHttpKernelBundleBundle;
class eZTestBundle extends Bundle
{
}
8/1/2013Presenter: Łukasz Serwatka Slide 12
Extending eZ Publish 5
Main Bundle Class
 Before a Bundle can be used it has to be registered in the system.
 With the registerBundles() method, you have total control over which bundles
are used by eZ Publish 5 (including the core Symfony bundles).
// ezpublish/EzPublishKernel.php
public function registerBundles()
{
$bundles = array(
...,
// register your bundles
new eZTestBundleeZTestBundle(),
);
// ...
return $bundles;
}
8/1/2013Presenter: <enter presenter in footnote> Slide 13
Extending eZ Publish 5
Registering Bundle
 eZ Publish 5 provides a shortcut for automatic bundle registration
php ezpublish/console generate:bundle --
namespace=eZ/TestBundle
php ezpublish/console assets:install --symlink
php ezpublish/console cache:clear
8/1/2013Presenter: Łukasz Serwatka Slide 14
Extending eZ Publish 5
Registering Bundle
 File: eZTestBundle.php
<?php
Namespace eZTestBundle;
use SymfonyComponentHttpKernelBundleBundle;
class eZTestBundle extends Bundle
{
public function getParent()
{
return ’eZDemoBundle';
}
}
8/1/2013Presenter: Łukasz Serwatka Slide 15
Extending eZ Publish 5
Bundle Override
 File: src/eZ/DemoBundle/Controller/MyController.php
<?php
namespace eZDemoBundleMyController;
use EzSystemsDemoBundleControllerDemoController as BaseController;
class MyController extends BaseController
{
public function footerAction( $locationId )
{
// Call parent method or completely replace its logic with your own
$response = parent::footerAction( $locationId );
// ... do custom stuff
return $response;
}
}
 Only works if the bundle refers to the controller using the standard
EzSystemsDemoBundle:Demo:footer syntax in routes and templates
8/1/2013Presenter: Łukasz Serwatka Slide 16
Extending eZ Publish 5
Controller Override
 File: view.html.twig
<h1>Hello</h1>
<p>I‟m a Twig template!</p>
 Created Twig template can be included as follows:
{% include „eZTestBundle::view.html.twig‟ %}
01/08/2013Presenter: Łukasz Serwatka Slide 17
Extending eZ Publish 5
Example Twig Template
 Legacy template include
// eZ Publish 5.0
{% ez_legacy_include "design:parts/menu.tpl" with
{"current_node_id": location.contentInfo.mainLocationId} %}
// eZ Publish 5.1 and above
{% include "design:parts/menu.tpl" with {"current_node_id":
location.contentInfo.mainLocationId} %}
Note that if you pass a Content or a Location it will be converted to the
corresponding eZ Publish Legacy objects.
01/08/2013Presenter: Łukasz Serwatka Slide 18
Extending eZ Publish 5
Working with legacy templates
 The best practice for extension migration regarding configuration is to keep a
compatible format
ezoe.ini
[EditorSettings]
# Skin for the editor, 'default' and 'o2k7' is included as standard
Skin=o2k7
# Lets you control alignment of toolbar buttons [left|right]
ToolbarAlign=left
parameters:
# Namespace is ezoe (INI file was ezoe.ini), scope is defined to
ezdemo_site siteaccess
ezoe.ezdemo_site.EditorSettings.Skin: o2k7
ezoe.ezdemo_site.EditorSettings.ToolbarAlign: left
01/08/2013Presenter: Łukasz Serwatka Slide 19
Extending eZ Publish 5
Working with INI settings
// Assuming that current siteaccess is ezdemo_site
// The following code will work regardless of whether you are using the
legacy extension or the migrated one.
$resolver = $this->getConfigResolver();
$skin = $resolver->getParameter( ’EditorSettings.Skin', ’ezoe' );
$toolbarAlign= $resolver->getParameter( ’EditorSettings.ToolbarAlign',
’ezoe' );
01/08/2013Presenter: Łukasz Serwatka Slide 20
Extending eZ Publish 5
Working with INI settings
 Datatypes are FieldTypes in eZ Publish 5
 Extends eZPublishCoreFieldTypeFieldType class
 Uses Value objects for storing arbitrary data (extends
eZPublishCoreFieldTypeValue)
 Requires converters for field values in legacy storage (implements
eZPublishCorePersistenceLegacyContentFieldValueConverter)
 A NULL Converter is available for developers’ convenience
 Uses gateways for getting data from external storage (custom tables)
8/1/2013Presenter: Łukasz Serwatka Slide 21
Extending eZ Publish 5
FieldType
 A common issue when rendering legacy field type in eZ Publish 5 is the
API_CONTENT_EXCEPTION
 It occurs when the API throws an exception that could not be caught internally
(missing field type, missing converter, internal error...)
 For simple field types, declaration of a NULL converter is often a resolution
// Resources/config/fieldtypes.yml
ezpublish.fieldType.ezsample.class: %ezpublish.fieldType.eznull.class%
ezpublish.fieldType.ezsample:
class: %ezpublish.fieldType.ezsample.class%
parent: ezpublish.fieldType
arguments: [ ”ezsample" ]
tags:
- {name: ezpublish.fieldType, alias: ezsample}
8/1/2013Presenter: Łukasz Serwatka Slide 22
Extending eZ Publish 5
NULL Converter
// Resources/config/storage_engines.yml
ezpublish.fieldType.ezsample.converter.class:
%ezpublish.fieldType.eznull.converter.class%
ezpublish.fieldType.ezsample.converter:
class: %ezpublish.fieldType.ezsample.converter.class%
tags:
- {name: ezpublish.storageEngine.legacy.converter, alias:
ezsample, lazy: true, callback: '::create'}
8/1/2013Presenter: Łukasz Serwatka Slide 23
Extending eZ Publish 5
NULL Converter
 Some FieldTypes require that you store data in the external data sources
 Possible through the eZPublishSPIFieldTypeFieldStorage interface.
// Resources/config/fieldtypes.yml
parameters:
ezpublish.fieldType.ezsample.externalStorage.class:
eZPublishCoreFieldTypeSampleSampleStorage
services:
ezpublish.fieldType.ezsample.externalStorage:
class: %ezpublish.fieldType.ezsample.externalStorage.class%
tags:
- {name: ezpublish.fieldType.externalStorageHandler, alias:
ezsample}
8/1/2013Presenter: Łukasz Serwatka Slide 24
Extending eZ Publish 5
External storage
 It is recommended to use gateway-based storage
 Implement a gateway infrastructure and a registry for the gateways
 Possible through eZPublishCoreFieldTypeStorageGateway
// Resources/config/fieldtypes.yml
parameters:
ezpublish.fieldType.ezsample.storage_gateway.class:
eZPublishCoreFieldTypeSampleSampleStorageGatewayLegacyStorage
services:
ezpublish.fieldType.ezsample.storage_gateway:
class: %ezpublish.fieldType.ezsample.storage_gateway.class%
tags:
- {name: ezpublish.fieldType.externalStorageHandler.gateway,
alias: ezsample, identifier: LegacyStorage}
8/1/2013Presenter: Łukasz Serwatka Slide 25
Extending eZ Publish 5
External storage
abstract class Gateway extends StorageGateway
{
/**
* Stores data in the database based on the given field data
*
* @param eZPublishSPIPersistenceContentVersionInfo $versionInfo
* @param eZPublishSPIPersistenceContentField $field
*/
abstract public function storeFieldData( VersionInfo $versionInfo, Field $field );
/**
* Gets data stored in the field
*
* @param eZPublishSPIPersistenceContentVersionInfo $versionInfo
* @param eZPublishSPIPersistenceContentField $field
*/
abstract public function getFieldData( VersionInfo $versionInfo, Field $field );
/**
* Deletes field data for all $fieldIds in the version identified by
* $versionInfo.
*
* @param eZPublishSPIPersistenceContentVersionInfo $versionInfo
* @param array $fieldIds
*/
abstract public function deleteFieldData( VersionInfo $versionInfo, array $fieldIds );
}
8/1/2013Presenter: Łukasz Serwatka Slide 26
Extending eZ Publish 5
External storage
/**
* Deletes field data for all $fieldIds in the version identified by
* $versionInfo.
*
* @param eZPublishSPIPersistenceContentVersionInfo $versionInfo
* @param array $fieldIds
*/
public function deleteFieldData( VersionInfo $versionInfo, array $fieldIds )
{
$connection = $this->getConnection();
$query = $connection->createDeleteQuery();
$query
->deleteFrom( … )
->where(…)
$query->prepare()->execute();
}
8/1/2013Presenter: Łukasz Serwatka Slide 27
Extending eZ Publish 5
External storage
 Possible to run some PHP code inside a sandbox through
the runCallback() method
<?php
// Declare use statements for the classes you may need
use eZINI;
// Inside a controller extending eZBundleEzPublishCoreBundleController
$settingName = 'MySetting';
$test = array( 'oneValue', 'anotherValue' );
$myLegacySetting = $this->getLegacyKernel()->runCallback(
function () use ( $settingName, $test )
{
// Here you can reuse $settingName and $test variables inside the legacy
context
$ini = eZINI::instance( 'someconfig.ini' );
return $ini->variable( 'SomeSection', $settingName );
}
);
8/1/2013Presenter: Łukasz Serwatka Slide 28
Extending eZ Publish 5
Running legacy code
 Stored in the Resources/translations/ directory of the bundle.
 Each translation file must be named according to the following path:
domain.locale.loader. For example Resources/translations/messages.fr.yml
 Keyword messages preferred over messages that are written in the language
of the default locale. For example $t = $translator->trans(’ez5.great');
 YAML is the recommended configuration type
 Possible to dump messages into a file with ezpublish/console
$ php ezpublish/console translation:update --output-
format=yml --dump-messages <locale> <bundle name>
8/1/2013Presenter: Łukasz Serwatka Slide 29
Extending eZ Publish 5
Translations
 Commands should be placed under the Command/ folder inside your Bundle
and file name must be suffixed with Command.php, e.g EzTestCommand.php
Class EzTestCommand extends ContainerAwareCommand
{
protected function configure()
{
}
protected function execute(InputInterface $input, OutputInterface
$output)
{
}
}
8/1/2013Presenter: Łukasz Serwatka Slide 30
Extending eZ Publish 5
Console commands
 Console command configuration
Class EzTestCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
->setName('demo:eztest')
->setDescription(’eZ Publish 5 Console Test')
->addArgument(’first', InputArgument::OPTIONAL, ’First
argument')
->addOption(’second', null, InputOption::VALUE_NONE, ‘Option
param')
;
}
}
8/1/2013Presenter: Łukasz Serwatka Slide 31
Extending eZ Publish 5
Console commands
 Console command configuration
Class EzTestCommand extends ContainerAwareCommand
{
protected function execute(InputInterface $input, OutputInterface $output)
{
$name = $input->getArgument(’first');
if ($name) {
$text = 'Hello '.$name;
}
if ($input->getOption(’second')) {
$text = strtoupper($text);
}
$output->writeln($text);
}
}
8/1/2013Presenter: Łukasz Serwatka Slide 32
Extending eZ Publish 5
Console commands
 We recommend using composer (http://getcomposer.org) to install bundles
 Provide packages via https://packagist.org website for ease of distribution
 Configuration with composer.json
8/1/2013Presenter: Łukasz Serwatka Slide 33
Extending eZ Publish 5
Composer
{
"name": ”ez/testbundle",
"description": “",
"license": "GPL-2.0",
"authors": [
{
"name": ”eZ",
"homepage": "http://ez.no"
}
],
"require": {
"ezsystems/ezpublish-kernel": "dev-master"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {”eZTestBundle": ""}
},
"target-dir": ”eZ/TestBundle"
}
8/1/2013Presenter: Łukasz Serwatka Slide 34
Extending eZ Publish 5
composer.json

More Related Content

What's hot

Embrace Change - Embrace OSGi
Embrace Change - Embrace OSGiEmbrace Change - Embrace OSGi
Embrace Change - Embrace OSGiCarsten Ziegeler
 
Triple E class DevOps with Hudson, Maven, Kokki/Multiconf and PyDev
Triple E class DevOps with Hudson, Maven, Kokki/Multiconf and PyDevTriple E class DevOps with Hudson, Maven, Kokki/Multiconf and PyDev
Triple E class DevOps with Hudson, Maven, Kokki/Multiconf and PyDevWerner Keil
 
The Web on OSGi: Here's How
The Web on OSGi: Here's HowThe Web on OSGi: Here's How
The Web on OSGi: Here's Howmrdon
 
Oracle WebLogic: Feature Timeline from WLS9 to WLS 12c
Oracle WebLogic: Feature Timeline from WLS9 to WLS 12cOracle WebLogic: Feature Timeline from WLS9 to WLS 12c
Oracle WebLogic: Feature Timeline from WLS9 to WLS 12cfrankmunz
 
When dynamic becomes static
When dynamic becomes staticWhen dynamic becomes static
When dynamic becomes staticWim Godden
 
CamelOne 2013 Karaf A-MQ Camel CXF Security
CamelOne 2013 Karaf A-MQ Camel CXF SecurityCamelOne 2013 Karaf A-MQ Camel CXF Security
CamelOne 2013 Karaf A-MQ Camel CXF SecurityKenneth Peeples
 
Installing and Getting Started with Alfresco
Installing and Getting Started with AlfrescoInstalling and Getting Started with Alfresco
Installing and Getting Started with AlfrescoWildan Maulana
 
Managing Your Runtime With P2
Managing Your Runtime With P2Managing Your Runtime With P2
Managing Your Runtime With P2Pascal Rapicault
 
Glassfish Web Stack Launch Jyri Virkki V2
Glassfish Web Stack Launch Jyri Virkki V2Glassfish Web Stack Launch Jyri Virkki V2
Glassfish Web Stack Launch Jyri Virkki V2Eduardo Pelegri-Llopart
 
Apache Aries: A blueprint for developing with OSGi and JEE
Apache Aries: A blueprint for developing with OSGi and JEEApache Aries: A blueprint for developing with OSGi and JEE
Apache Aries: A blueprint for developing with OSGi and JEEmahrwald
 
CollabSphere 2021 - DEV114 - The Nuts and Bolts of CI/CD With a Large XPages ...
CollabSphere 2021 - DEV114 - The Nuts and Bolts of CI/CD With a Large XPages ...CollabSphere 2021 - DEV114 - The Nuts and Bolts of CI/CD With a Large XPages ...
CollabSphere 2021 - DEV114 - The Nuts and Bolts of CI/CD With a Large XPages ...Jesse Gallagher
 
Best Practices - PHP and the Oracle Database
Best Practices - PHP and the Oracle DatabaseBest Practices - PHP and the Oracle Database
Best Practices - PHP and the Oracle DatabaseChristopher Jones
 
EM13c: Write Powerful Scripts with EMCLI
EM13c: Write Powerful Scripts with EMCLIEM13c: Write Powerful Scripts with EMCLI
EM13c: Write Powerful Scripts with EMCLIGokhan Atil
 
Creating a modern web application using Symfony API Platform, ReactJS and Red...
Creating a modern web application using Symfony API Platform, ReactJS and Red...Creating a modern web application using Symfony API Platform, ReactJS and Red...
Creating a modern web application using Symfony API Platform, ReactJS and Red...Jesus Manuel Olivas
 
]po[ Sencha File-Storage Specs
]po[ Sencha File-Storage Specs]po[ Sencha File-Storage Specs
]po[ Sencha File-Storage SpecsKlaus Hofeditz
 
Changes in WebLogic 12.1.3 Every Administrator Must Know
Changes in WebLogic 12.1.3 Every Administrator Must KnowChanges in WebLogic 12.1.3 Every Administrator Must Know
Changes in WebLogic 12.1.3 Every Administrator Must KnowBruno Borges
 

What's hot (20)

Embrace Change - Embrace OSGi
Embrace Change - Embrace OSGiEmbrace Change - Embrace OSGi
Embrace Change - Embrace OSGi
 
Triple E class DevOps with Hudson, Maven, Kokki/Multiconf and PyDev
Triple E class DevOps with Hudson, Maven, Kokki/Multiconf and PyDevTriple E class DevOps with Hudson, Maven, Kokki/Multiconf and PyDev
Triple E class DevOps with Hudson, Maven, Kokki/Multiconf and PyDev
 
The Web on OSGi: Here's How
The Web on OSGi: Here's HowThe Web on OSGi: Here's How
The Web on OSGi: Here's How
 
Oracle WebLogic: Feature Timeline from WLS9 to WLS 12c
Oracle WebLogic: Feature Timeline from WLS9 to WLS 12cOracle WebLogic: Feature Timeline from WLS9 to WLS 12c
Oracle WebLogic: Feature Timeline from WLS9 to WLS 12c
 
Laravel 5
Laravel 5Laravel 5
Laravel 5
 
When dynamic becomes static
When dynamic becomes staticWhen dynamic becomes static
When dynamic becomes static
 
CamelOne 2013 Karaf A-MQ Camel CXF Security
CamelOne 2013 Karaf A-MQ Camel CXF SecurityCamelOne 2013 Karaf A-MQ Camel CXF Security
CamelOne 2013 Karaf A-MQ Camel CXF Security
 
Installing and Getting Started with Alfresco
Installing and Getting Started with AlfrescoInstalling and Getting Started with Alfresco
Installing and Getting Started with Alfresco
 
Oracle Essentials Oracle Database 11g
Oracle Essentials   Oracle Database 11gOracle Essentials   Oracle Database 11g
Oracle Essentials Oracle Database 11g
 
Managing Your Runtime With P2
Managing Your Runtime With P2Managing Your Runtime With P2
Managing Your Runtime With P2
 
Glassfish Web Stack Launch Jyri Virkki V2
Glassfish Web Stack Launch Jyri Virkki V2Glassfish Web Stack Launch Jyri Virkki V2
Glassfish Web Stack Launch Jyri Virkki V2
 
Apache Aries: A blueprint for developing with OSGi and JEE
Apache Aries: A blueprint for developing with OSGi and JEEApache Aries: A blueprint for developing with OSGi and JEE
Apache Aries: A blueprint for developing with OSGi and JEE
 
CollabSphere 2021 - DEV114 - The Nuts and Bolts of CI/CD With a Large XPages ...
CollabSphere 2021 - DEV114 - The Nuts and Bolts of CI/CD With a Large XPages ...CollabSphere 2021 - DEV114 - The Nuts and Bolts of CI/CD With a Large XPages ...
CollabSphere 2021 - DEV114 - The Nuts and Bolts of CI/CD With a Large XPages ...
 
Best Practices - PHP and the Oracle Database
Best Practices - PHP and the Oracle DatabaseBest Practices - PHP and the Oracle Database
Best Practices - PHP and the Oracle Database
 
EM13c: Write Powerful Scripts with EMCLI
EM13c: Write Powerful Scripts with EMCLIEM13c: Write Powerful Scripts with EMCLI
EM13c: Write Powerful Scripts with EMCLI
 
JavaEE6 my way
JavaEE6 my wayJavaEE6 my way
JavaEE6 my way
 
Creating a modern web application using Symfony API Platform, ReactJS and Red...
Creating a modern web application using Symfony API Platform, ReactJS and Red...Creating a modern web application using Symfony API Platform, ReactJS and Red...
Creating a modern web application using Symfony API Platform, ReactJS and Red...
 
]po[ Sencha File-Storage Specs
]po[ Sencha File-Storage Specs]po[ Sencha File-Storage Specs
]po[ Sencha File-Storage Specs
 
Changes in WebLogic 12.1.3 Every Administrator Must Know
Changes in WebLogic 12.1.3 Every Administrator Must KnowChanges in WebLogic 12.1.3 Every Administrator Must Know
Changes in WebLogic 12.1.3 Every Administrator Must Know
 
Weblogic12 c installation guide
Weblogic12 c installation guideWeblogic12 c installation guide
Weblogic12 c installation guide
 

Similar to Migrating extensions to eZ Publish 5

ITU - MDD - Eclipse Plug-ins
ITU - MDD - Eclipse Plug-insITU - MDD - Eclipse Plug-ins
ITU - MDD - Eclipse Plug-insTonny Madsen
 
eZ UnConference#2 - eZ Publish 5 basics Philippe Vincent-Royol & Florent Huck
eZ UnConference#2 - eZ Publish 5 basics Philippe Vincent-Royol & Florent HuckeZ UnConference#2 - eZ Publish 5 basics Philippe Vincent-Royol & Florent Huck
eZ UnConference#2 - eZ Publish 5 basics Philippe Vincent-Royol & Florent HuckeZ Publish Community
 
Eclipse Overview
Eclipse Overview Eclipse Overview
Eclipse Overview Lars Vogel
 
Office OpenXML: a technical approach for OOo.
Office OpenXML: a technical approach for OOo.Office OpenXML: a technical approach for OOo.
Office OpenXML: a technical approach for OOo.Alexandro Colorado
 
20100707 e z_rmll_gig_v1
20100707 e z_rmll_gig_v120100707 e z_rmll_gig_v1
20100707 e z_rmll_gig_v1Gilles Guirand
 
Frankenstein's IDE: NetBeans and OSGi
Frankenstein's IDE: NetBeans and OSGiFrankenstein's IDE: NetBeans and OSGi
Frankenstein's IDE: NetBeans and OSGiToni Epple
 
ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...
ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...
ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...Cyber Security Alliance
 
Nuxeo ECM Platform - Technical Overview
Nuxeo ECM Platform - Technical OverviewNuxeo ECM Platform - Technical Overview
Nuxeo ECM Platform - Technical OverviewNuxeo
 
Extend Eclipse p2 framework capabilities: Add your custom installation steps
Extend Eclipse p2 framework capabilities: Add your custom installation stepsExtend Eclipse p2 framework capabilities: Add your custom installation steps
Extend Eclipse p2 framework capabilities: Add your custom installation stepsDragos_Mihailescu
 
Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)Mikkel Flindt Heisterberg
 
What's New for Presentation in Visual Studio 2008 SP1
What's New for Presentation in Visual Studio 2008 SP1What's New for Presentation in Visual Studio 2008 SP1
What's New for Presentation in Visual Studio 2008 SP1ukdpe
 
Logs/Metrics Gathering With OpenShift EFK Stack
Logs/Metrics Gathering With OpenShift EFK StackLogs/Metrics Gathering With OpenShift EFK Stack
Logs/Metrics Gathering With OpenShift EFK StackJosef Karásek
 

Similar to Migrating extensions to eZ Publish 5 (20)

ITU - MDD - Eclipse Plug-ins
ITU - MDD - Eclipse Plug-insITU - MDD - Eclipse Plug-ins
ITU - MDD - Eclipse Plug-ins
 
eZ UnConference#2 - eZ Publish 5 basics Philippe Vincent-Royol & Florent Huck
eZ UnConference#2 - eZ Publish 5 basics Philippe Vincent-Royol & Florent HuckeZ UnConference#2 - eZ Publish 5 basics Philippe Vincent-Royol & Florent Huck
eZ UnConference#2 - eZ Publish 5 basics Philippe Vincent-Royol & Florent Huck
 
Eclipse Overview
Eclipse Overview Eclipse Overview
Eclipse Overview
 
eZ Publish 5 in depth inspection
eZ Publish 5 in depth inspectioneZ Publish 5 in depth inspection
eZ Publish 5 in depth inspection
 
Office OpenXML: a technical approach for OOo.
Office OpenXML: a technical approach for OOo.Office OpenXML: a technical approach for OOo.
Office OpenXML: a technical approach for OOo.
 
20100707 e z_rmll_gig_v1
20100707 e z_rmll_gig_v120100707 e z_rmll_gig_v1
20100707 e z_rmll_gig_v1
 
Frankenstein's IDE: NetBeans and OSGi
Frankenstein's IDE: NetBeans and OSGiFrankenstein's IDE: NetBeans and OSGi
Frankenstein's IDE: NetBeans and OSGi
 
ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...
ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...
ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...
 
Nuxeo ECM Platform - Technical Overview
Nuxeo ECM Platform - Technical OverviewNuxeo ECM Platform - Technical Overview
Nuxeo ECM Platform - Technical Overview
 
Apache Felix Web Console
Apache Felix Web ConsoleApache Felix Web Console
Apache Felix Web Console
 
Drupal Modules
Drupal ModulesDrupal Modules
Drupal Modules
 
Extend Eclipse p2 framework capabilities: Add your custom installation steps
Extend Eclipse p2 framework capabilities: Add your custom installation stepsExtend Eclipse p2 framework capabilities: Add your custom installation steps
Extend Eclipse p2 framework capabilities: Add your custom installation steps
 
DIY Flex
DIY FlexDIY Flex
DIY Flex
 
DIY Flex
DIY FlexDIY Flex
DIY Flex
 
Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)
 
Readme
ReadmeReadme
Readme
 
Flyr PHP micro-framework
Flyr PHP micro-frameworkFlyr PHP micro-framework
Flyr PHP micro-framework
 
Flask
FlaskFlask
Flask
 
What's New for Presentation in Visual Studio 2008 SP1
What's New for Presentation in Visual Studio 2008 SP1What's New for Presentation in Visual Studio 2008 SP1
What's New for Presentation in Visual Studio 2008 SP1
 
Logs/Metrics Gathering With OpenShift EFK Stack
Logs/Metrics Gathering With OpenShift EFK StackLogs/Metrics Gathering With OpenShift EFK Stack
Logs/Metrics Gathering With OpenShift EFK Stack
 

Recently uploaded

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 

Recently uploaded (20)

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 

Migrating extensions to eZ Publish 5

  • 1. A quick look at the Symfony2 Bundle system Migrating extensions to eZ Publish 5
  • 2. 01/08/2013Presenter: Łukasz Serwatka Slide 2 Extending eZ Publish 5 Presenter Łukasz Serwatka Product Management Technical Lead lukasz.serwatka@ez.no @lserwatka  Working with eZ since 1st of March 2005  Over 10 years of experience with eZ Publish  Former member of the Engineering team  eZ Publish & Polish PHP Community Member  Expert in mobile solutions (mobile applications & mobile strategies)
  • 3. 01/08/2013Presenter: Łukasz Serwatka Slide 3 Extending eZ Publish 5 Preparation  Drivers for migration (challenges, requirements) - It is very important to understand the drivers behind a migration effort  Inventory of current environment - Creating a detailed summary of the current extension portfolio really helps in terms of understanding the scope of a migration effort  Migration service provider - evaluate at least a couple of migration service providers if you do not have migration skills and staff in-house.  Migration effort estimate - the estimate depends on many factors such as extension size, database complexity, components, etc. Usually provided by the migration service provider.  Training requirements - Training requirements for existing development team on the new platform need to be assessed to ensure that they can support the new environment effectively and can participate in the migration process if required.
  • 4. 01/08/2013Presenter: Łukasz Serwatka Slide 4 Extending eZ Publish 5 Preparation  Make in-depth analysis of the existing eZ Publish 4.x extension functionality and code base, focusing especially on  External storage (custom tables)  Configuration (INI settings overrides)  CLI scripts  Template overrides  Datatypes  Edit handlers  Workflow events  AJAX calls  Translations  User interface (backend)  Carefully judge which elements can be natively implemented in eZ Publish 5 and which ones still require the legacy kernel. Not all legacy features are available in eZ Publish 5 yet, and it is an ongoing process to fill the gaps.
  • 5. 01/08/2013Presenter: Łukasz Serwatka Slide 5 Extending eZ Publish 5 Preparation  The eZ Publish 5 supported extension points at the moment:  FieldTypes (with custom tables)  Templates (view providers for Content, Location and Blocks [since eZ Publish 5.1])  Services (Persistence API)  Controllers & Actions (Routes)  Events (PostSiteAccessMatchEvent, PreContentViewEvent, APIContentExceptionEvent) eZ/Publish/Core/MVC/Legacy/LegacyEvents.php eZ/Publish/Core/MVC/Symfony/MVCEvents.php
  • 6. 01/08/2013Presenter: Łukasz Serwatka Slide 6 Extending eZ Publish 5 New concepts in eZ Publish 5.x eZ Publish 4.x eZ Publish 5.x Module Controller, extends eZBundleEzPublishCoreBundleController Action & View Action, the method on the Controller to execute. View is a (Twig) template that displays the result of the Action. eZTemplate Twig, new template engine, new syntax fetch() Render function, HMVC concept, a function that enables embedding other controller calls Extension Bundle in eZ Publish 5 (Symfony2) CLI eZ Publish 5 ezpublish/console component for creating command line interfaces INI settings YAML, recommended configuration type in eZ Publish 5
  • 7. 01/08/2013Presenter: Łukasz Serwatka Slide 7 Extending eZ Publish 5 Naming differences between eZ Publish 4.x and 5.x eZ Publish 4.x eZ Publish 5.x (Content) Class ContentType (Content) Class Group ContentTypeGroup (Content) Class Attribute FieldDefinition (Content) Object Content (meta info in: ContentInfo) (Content Object) Version VersionInfo (Content Object) Attribute Field (Content Object) Attribute content FieldValue Datatype FieldType Node Location
  • 8.  eZ Publish 5 can be extended thanks to the bundle system  A Bundle is a directory containing a set of files (PHP files, stylesheets, JavaScripts, images, ...) that implement a single feature (a blog, a forum, etc) and which can be easily shared with other developers.  eZ Publish 5 also provides a command line interface for generating a basic bundle skeleton: $ php ezpublish/console generate:bundle –namespace=eZ/TestBundle 01/08/2013Presenter: Łukasz Serwatka Slide 8 Extending eZ Publish 5
  • 9. 01/08/2013Presenter: Łukasz Serwatka Slide 9 Extending eZ Publish 5 Bundle Directory Structure Bundle Directory Structure Description Controller/ contains the controllers of the bundle (e.g. HelloController.php); DependencyInjection/ holds certain dependency injection extension classes, which may import service configuration Resources/config/ houses configuration, including routing configuration (e.g. routing.yml); Resources/views/ holds templates organized by controller name (e.g. Hello/index.html.twig); Resources/public/ contains web assets (images, stylesheets, etc) and is copied or symbolically linked into the project web/ directory via the assets:install console command; Tests/ holds all tests for the bundle.
  • 10. 01/08/2013Presenter: Łukasz Serwatka Slide 10 Extending eZ Publish 5 Bundle Directory Structure – Advanced Bundle Directory Structure Description API/ contains the value object definitions, service interfaces, etc. In short, public API interfaces provided by your bundle. Core/ holds field types implementation, persistence related classes, repository implementations, signal-slot implementations, etc. SPI/ (Service Provider Interface) holds interfaces that can contain one or several implementations around Persistence (database), IO (file system), FieldTypes (formerly DataTypes), Limitations (permissions system), etc. EventListeners/ holds event listener implementation for both eZ Publish 5 and LS Command/ contains Console commands; each file must be suffixed with Command.php
  • 11.  Example eZ Publish 5 Bundle architecture 01/08/2013Presenter: Łukasz Serwatka Slide 11 Extending eZ Publish 5 Bundle Directory Structure
  • 12.  File: eZTestBundle.php <?php Namespace eZTestBundle; use SymfonyComponentHttpKernelBundleBundle; class eZTestBundle extends Bundle { } 8/1/2013Presenter: Łukasz Serwatka Slide 12 Extending eZ Publish 5 Main Bundle Class
  • 13.  Before a Bundle can be used it has to be registered in the system.  With the registerBundles() method, you have total control over which bundles are used by eZ Publish 5 (including the core Symfony bundles). // ezpublish/EzPublishKernel.php public function registerBundles() { $bundles = array( ..., // register your bundles new eZTestBundleeZTestBundle(), ); // ... return $bundles; } 8/1/2013Presenter: <enter presenter in footnote> Slide 13 Extending eZ Publish 5 Registering Bundle
  • 14.  eZ Publish 5 provides a shortcut for automatic bundle registration php ezpublish/console generate:bundle -- namespace=eZ/TestBundle php ezpublish/console assets:install --symlink php ezpublish/console cache:clear 8/1/2013Presenter: Łukasz Serwatka Slide 14 Extending eZ Publish 5 Registering Bundle
  • 15.  File: eZTestBundle.php <?php Namespace eZTestBundle; use SymfonyComponentHttpKernelBundleBundle; class eZTestBundle extends Bundle { public function getParent() { return ’eZDemoBundle'; } } 8/1/2013Presenter: Łukasz Serwatka Slide 15 Extending eZ Publish 5 Bundle Override
  • 16.  File: src/eZ/DemoBundle/Controller/MyController.php <?php namespace eZDemoBundleMyController; use EzSystemsDemoBundleControllerDemoController as BaseController; class MyController extends BaseController { public function footerAction( $locationId ) { // Call parent method or completely replace its logic with your own $response = parent::footerAction( $locationId ); // ... do custom stuff return $response; } }  Only works if the bundle refers to the controller using the standard EzSystemsDemoBundle:Demo:footer syntax in routes and templates 8/1/2013Presenter: Łukasz Serwatka Slide 16 Extending eZ Publish 5 Controller Override
  • 17.  File: view.html.twig <h1>Hello</h1> <p>I‟m a Twig template!</p>  Created Twig template can be included as follows: {% include „eZTestBundle::view.html.twig‟ %} 01/08/2013Presenter: Łukasz Serwatka Slide 17 Extending eZ Publish 5 Example Twig Template
  • 18.  Legacy template include // eZ Publish 5.0 {% ez_legacy_include "design:parts/menu.tpl" with {"current_node_id": location.contentInfo.mainLocationId} %} // eZ Publish 5.1 and above {% include "design:parts/menu.tpl" with {"current_node_id": location.contentInfo.mainLocationId} %} Note that if you pass a Content or a Location it will be converted to the corresponding eZ Publish Legacy objects. 01/08/2013Presenter: Łukasz Serwatka Slide 18 Extending eZ Publish 5 Working with legacy templates
  • 19.  The best practice for extension migration regarding configuration is to keep a compatible format ezoe.ini [EditorSettings] # Skin for the editor, 'default' and 'o2k7' is included as standard Skin=o2k7 # Lets you control alignment of toolbar buttons [left|right] ToolbarAlign=left parameters: # Namespace is ezoe (INI file was ezoe.ini), scope is defined to ezdemo_site siteaccess ezoe.ezdemo_site.EditorSettings.Skin: o2k7 ezoe.ezdemo_site.EditorSettings.ToolbarAlign: left 01/08/2013Presenter: Łukasz Serwatka Slide 19 Extending eZ Publish 5 Working with INI settings
  • 20. // Assuming that current siteaccess is ezdemo_site // The following code will work regardless of whether you are using the legacy extension or the migrated one. $resolver = $this->getConfigResolver(); $skin = $resolver->getParameter( ’EditorSettings.Skin', ’ezoe' ); $toolbarAlign= $resolver->getParameter( ’EditorSettings.ToolbarAlign', ’ezoe' ); 01/08/2013Presenter: Łukasz Serwatka Slide 20 Extending eZ Publish 5 Working with INI settings
  • 21.  Datatypes are FieldTypes in eZ Publish 5  Extends eZPublishCoreFieldTypeFieldType class  Uses Value objects for storing arbitrary data (extends eZPublishCoreFieldTypeValue)  Requires converters for field values in legacy storage (implements eZPublishCorePersistenceLegacyContentFieldValueConverter)  A NULL Converter is available for developers’ convenience  Uses gateways for getting data from external storage (custom tables) 8/1/2013Presenter: Łukasz Serwatka Slide 21 Extending eZ Publish 5 FieldType
  • 22.  A common issue when rendering legacy field type in eZ Publish 5 is the API_CONTENT_EXCEPTION  It occurs when the API throws an exception that could not be caught internally (missing field type, missing converter, internal error...)  For simple field types, declaration of a NULL converter is often a resolution // Resources/config/fieldtypes.yml ezpublish.fieldType.ezsample.class: %ezpublish.fieldType.eznull.class% ezpublish.fieldType.ezsample: class: %ezpublish.fieldType.ezsample.class% parent: ezpublish.fieldType arguments: [ ”ezsample" ] tags: - {name: ezpublish.fieldType, alias: ezsample} 8/1/2013Presenter: Łukasz Serwatka Slide 22 Extending eZ Publish 5 NULL Converter
  • 23. // Resources/config/storage_engines.yml ezpublish.fieldType.ezsample.converter.class: %ezpublish.fieldType.eznull.converter.class% ezpublish.fieldType.ezsample.converter: class: %ezpublish.fieldType.ezsample.converter.class% tags: - {name: ezpublish.storageEngine.legacy.converter, alias: ezsample, lazy: true, callback: '::create'} 8/1/2013Presenter: Łukasz Serwatka Slide 23 Extending eZ Publish 5 NULL Converter
  • 24.  Some FieldTypes require that you store data in the external data sources  Possible through the eZPublishSPIFieldTypeFieldStorage interface. // Resources/config/fieldtypes.yml parameters: ezpublish.fieldType.ezsample.externalStorage.class: eZPublishCoreFieldTypeSampleSampleStorage services: ezpublish.fieldType.ezsample.externalStorage: class: %ezpublish.fieldType.ezsample.externalStorage.class% tags: - {name: ezpublish.fieldType.externalStorageHandler, alias: ezsample} 8/1/2013Presenter: Łukasz Serwatka Slide 24 Extending eZ Publish 5 External storage
  • 25.  It is recommended to use gateway-based storage  Implement a gateway infrastructure and a registry for the gateways  Possible through eZPublishCoreFieldTypeStorageGateway // Resources/config/fieldtypes.yml parameters: ezpublish.fieldType.ezsample.storage_gateway.class: eZPublishCoreFieldTypeSampleSampleStorageGatewayLegacyStorage services: ezpublish.fieldType.ezsample.storage_gateway: class: %ezpublish.fieldType.ezsample.storage_gateway.class% tags: - {name: ezpublish.fieldType.externalStorageHandler.gateway, alias: ezsample, identifier: LegacyStorage} 8/1/2013Presenter: Łukasz Serwatka Slide 25 Extending eZ Publish 5 External storage
  • 26. abstract class Gateway extends StorageGateway { /** * Stores data in the database based on the given field data * * @param eZPublishSPIPersistenceContentVersionInfo $versionInfo * @param eZPublishSPIPersistenceContentField $field */ abstract public function storeFieldData( VersionInfo $versionInfo, Field $field ); /** * Gets data stored in the field * * @param eZPublishSPIPersistenceContentVersionInfo $versionInfo * @param eZPublishSPIPersistenceContentField $field */ abstract public function getFieldData( VersionInfo $versionInfo, Field $field ); /** * Deletes field data for all $fieldIds in the version identified by * $versionInfo. * * @param eZPublishSPIPersistenceContentVersionInfo $versionInfo * @param array $fieldIds */ abstract public function deleteFieldData( VersionInfo $versionInfo, array $fieldIds ); } 8/1/2013Presenter: Łukasz Serwatka Slide 26 Extending eZ Publish 5 External storage
  • 27. /** * Deletes field data for all $fieldIds in the version identified by * $versionInfo. * * @param eZPublishSPIPersistenceContentVersionInfo $versionInfo * @param array $fieldIds */ public function deleteFieldData( VersionInfo $versionInfo, array $fieldIds ) { $connection = $this->getConnection(); $query = $connection->createDeleteQuery(); $query ->deleteFrom( … ) ->where(…) $query->prepare()->execute(); } 8/1/2013Presenter: Łukasz Serwatka Slide 27 Extending eZ Publish 5 External storage
  • 28.  Possible to run some PHP code inside a sandbox through the runCallback() method <?php // Declare use statements for the classes you may need use eZINI; // Inside a controller extending eZBundleEzPublishCoreBundleController $settingName = 'MySetting'; $test = array( 'oneValue', 'anotherValue' ); $myLegacySetting = $this->getLegacyKernel()->runCallback( function () use ( $settingName, $test ) { // Here you can reuse $settingName and $test variables inside the legacy context $ini = eZINI::instance( 'someconfig.ini' ); return $ini->variable( 'SomeSection', $settingName ); } ); 8/1/2013Presenter: Łukasz Serwatka Slide 28 Extending eZ Publish 5 Running legacy code
  • 29.  Stored in the Resources/translations/ directory of the bundle.  Each translation file must be named according to the following path: domain.locale.loader. For example Resources/translations/messages.fr.yml  Keyword messages preferred over messages that are written in the language of the default locale. For example $t = $translator->trans(’ez5.great');  YAML is the recommended configuration type  Possible to dump messages into a file with ezpublish/console $ php ezpublish/console translation:update --output- format=yml --dump-messages <locale> <bundle name> 8/1/2013Presenter: Łukasz Serwatka Slide 29 Extending eZ Publish 5 Translations
  • 30.  Commands should be placed under the Command/ folder inside your Bundle and file name must be suffixed with Command.php, e.g EzTestCommand.php Class EzTestCommand extends ContainerAwareCommand { protected function configure() { } protected function execute(InputInterface $input, OutputInterface $output) { } } 8/1/2013Presenter: Łukasz Serwatka Slide 30 Extending eZ Publish 5 Console commands
  • 31.  Console command configuration Class EzTestCommand extends ContainerAwareCommand { protected function configure() { $this ->setName('demo:eztest') ->setDescription(’eZ Publish 5 Console Test') ->addArgument(’first', InputArgument::OPTIONAL, ’First argument') ->addOption(’second', null, InputOption::VALUE_NONE, ‘Option param') ; } } 8/1/2013Presenter: Łukasz Serwatka Slide 31 Extending eZ Publish 5 Console commands
  • 32.  Console command configuration Class EzTestCommand extends ContainerAwareCommand { protected function execute(InputInterface $input, OutputInterface $output) { $name = $input->getArgument(’first'); if ($name) { $text = 'Hello '.$name; } if ($input->getOption(’second')) { $text = strtoupper($text); } $output->writeln($text); } } 8/1/2013Presenter: Łukasz Serwatka Slide 32 Extending eZ Publish 5 Console commands
  • 33.  We recommend using composer (http://getcomposer.org) to install bundles  Provide packages via https://packagist.org website for ease of distribution  Configuration with composer.json 8/1/2013Presenter: Łukasz Serwatka Slide 33 Extending eZ Publish 5 Composer
  • 34. { "name": ”ez/testbundle", "description": “", "license": "GPL-2.0", "authors": [ { "name": ”eZ", "homepage": "http://ez.no" } ], "require": { "ezsystems/ezpublish-kernel": "dev-master" }, "minimum-stability": "dev", "autoload": { "psr-0": {”eZTestBundle": ""} }, "target-dir": ”eZ/TestBundle" } 8/1/2013Presenter: Łukasz Serwatka Slide 34 Extending eZ Publish 5 composer.json