[T3CON13NA] Integrating Websites With Neos

Preview:

Citation preview

Integrating Websites with TYPO3 Neos

Donnerstag, 30. Mai 13

Implementing a Website with TYPO3 CMS

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

3 Ways to go on

Donnerstag, 30. Mai 13

Classic Templating

3 Ways to go on

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Templavoila

3 Ways to go on

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

3 Ways to go onFluid Template

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Write Typoscript

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Create Pages

Donnerstag, 30. Mai 13

Add Dummy Content

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Folder Structure?

Donnerstag, 30. Mai 13

Folder Structure?

fileadmin

?Donnerstag, 30. Mai 13

Folder Structure?

fileadmin

templates ?Donnerstag, 30. Mai 13

Folder Structure?

fileadmin

templates

extension?

Donnerstag, 30. Mai 13

TypoScript?

Donnerstag, 30. Mai 13

TYPO3 Neos

Donnerstag, 30. Mai 13

Installation

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Site Package

Donnerstag, 30. Mai 13

MyCompany.MySite

Classes

Configuratio

Resources

Site Package Contents

Donnerstag, 30. Mai 13

Resources Contents

Resources

Public

Private

Donnerstag, 30. Mai 13

Public

StyleSheets

Images

Scripts

Public Resources Contents

...

Donnerstag, 30. Mai 13

Private

Content

Templates

TypoScripts

Private Resources Contents

Donnerstag, 30. Mai 13

Content/Sites.xml<node type="TYPO3.Neos:Page" nodeName="anotherpage"> <properties> <title>Another Page</title> </properties> <node type="TYPO3.Neos:ContentCollection" nodeName="main"> <node type="TYPO3.Neos.NodeTypes:Headline" nodeName="headline1"> <properties> <title><![CDATA[<h1>Want More?</h1>]]></title> </properties> </node> <node type="TYPO3.Neos.NodeTypes:Text" nodeName="text1"> <properties> <text><![CDATA[ Some content ]]></text> </properties> </node> </node></node>

Donnerstag, 30. Mai 13

Content Model

Donnerstag, 30. Mai 13

Nodes

Donnerstag, 30. Mai 13

Node structure

site root

page

content collection

content element

representation of domain models

Donnerstag, 30. Mai 13

/sites/typo3org/home/subpage/main/text1

are addressed by nodePaths

Donnerstag, 30. Mai 13

/sites/typo3org/home/subpage/main/text1

site root

are addressed by nodePaths

Donnerstag, 30. Mai 13

/sites/typo3org/home/subpage/main/text1

pagessite root

are addressed by nodePaths

Donnerstag, 30. Mai 13

/sites/typo3org/home/subpage/main/text1

contentcollectionpages

site root

are addressed by nodePaths

Donnerstag, 30. Mai 13

/sites/typo3org/home/subpage/main/text1

content

contentcollectionpages

site root

are addressed by nodePaths

Donnerstag, 30. Mai 13

Private

Content

Templates

TypoScripts

Private Resources Contents

Donnerstag, 30. Mai 13

Page Template

Donnerstag, 30. Mai 13

Fluid Template

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Private

Content

Templates

TypoScripts

Private Resources Contents

Donnerstag, 30. Mai 13

TypoScript2 Basics

Donnerstag, 30. Mai 13

‣ TypoScript v4: Extensibility, stdWrap

‣ Fluid: HTML Templates

‣ JavaScript: Prototypes

‣ jQuery: DOM Selection, Filters

‣ CSS: Selectors

Inspirations

Donnerstag, 30. Mai 13

limited set of objects

Donnerstag, 30. Mai 13

Basic TypoScript objects

‣ Template

Donnerstag, 30. Mai 13

Basic TypoScript objects

‣ Template

‣ Array

Donnerstag, 30. Mai 13

Basic TypoScript objects

‣ Template

‣ Array

‣ Collection

Donnerstag, 30. Mai 13

Basic TypoScript objects

‣ Template

‣ Array

‣ Collection

‣ Case

Donnerstag, 30. Mai 13

Basic TypoScript objects

‣ Template

‣ Array

‣ Collection

‣ Case / Matcher

‣ Value

Donnerstag, 30. Mai 13

Prototypes

Donnerstag, 30. Mai 13

Prototype Declaration

Donnerstag, 30. Mai 13

processors

Donnerstag, 30. Mai 13

processors

Donnerstag, 30. Mai 13

Example TypoScript

Donnerstag, 30. Mai 13

Extensibility

Donnerstag, 30. Mai 13

Implement custom TypoScript objects

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Add processors

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

Embedded Expression Language (EEL)

Donnerstag, 30. Mai 13

domain specific language

Donnerstag, 30. Mai 13

Parsing Expression Grammar

Donnerstag, 30. Mai 13

WAIT

Donnerstag, 30. Mai 13

Why would I want

in my code?

Donnerstag, 30. Mai 13

Donnerstag, 30. Mai 13

jQuery like syntax

Donnerstag, 30. Mai 13

Collections

Donnerstag, 30. Mai 13

Traversal

Donnerstag, 30. Mai 13

Object Methods

Donnerstag, 30. Mai 13

Accessing objects

Donnerstag, 30. Mai 13

Accessing objects

Donnerstag, 30. Mai 13

Operations

Donnerstag, 30. Mai 13

Operations

Donnerstag, 30. Mai 13

comparisons

Donnerstag, 30. Mai 13

comparisons

Donnerstag, 30. Mai 13

Filtering objects

Donnerstag, 30. Mai 13

Filtering objects

Donnerstag, 30. Mai 13

Add custom operations

Donnerstag, 30. Mai 13

TypoScripts Contents

TypoScripts

Library

Donnerstag, 30. Mai 13

TypoScripts Contents

TypoScripts

Library Root.ts2

Donnerstag, 30. Mai 13

Tips

Donnerstag, 30. Mai 13

Custom Node Types

Donnerstag, 30. Mai 13

Stick to conventions

Donnerstag, 30. Mai 13

My Request

Donnerstag, 30. Mai 13

TRY AND GIVE FEEDBACK

Donnerstag, 30. Mai 13

@daskitsunet

‣ likes books, music, tea and more

‣ Flow and Neos Community Contact

‣ Freelance Trainer / Developer

‣ plays the piano

‣ christian.mueller@typo3.org

Donnerstag, 30. Mai 13

Recommended