Skip to content

Tweet FieldType for the eZ Platform FieldType tutorial

License

Notifications You must be signed in to change notification settings

MagdalenaZuba/TweetFieldTypeBundle

 
 

Repository files navigation

Field Type Tutorial

This repository contains the bundle that is created in the Field Type Tutorial.

About the tutorial

This tutorial covers the creation and development of a custom eZ Platform Field Type on the example of a Tweet Field Type. The Field will:

Contributing

Take a look at CONTRIBUTING.md to learn how to contribute to this tutorial.

Tag stability warning

Code in this repository can and will be changed along with changes made to the tutorial, which also means that commit history can be rewritten and tags can be moved. This implies that you shouldn't rely on "git pull" for updating repository and instead should clone it again to avoid problems.

CLI and REST helpers

The example Content Type with TweetFieldType can be created from CLI using the following command:

php app/console ezsystems:tweet-fieldtype:create-contenttype

The example Content Object can be created from CLI using the following command:

php app/console ezsystems:tweet-fieldtype:create-content

Alternatively, you can use REST API. Content Type creation example using curl (requires enabling basic auth based configuration: https://doc.ezplatform.com/en/latest/api/rest_api_guide/#authentication):

curl -u "admin:publish" -i -H "Accept: application/vnd.ez.api.ContentType+xml" \
-H "Content-Type: application/vnd.ez.api.ContentTypeCreate+xml" \
-X POST -d @src/EzSystems/TweetFieldTypeBundle/Resources/misc/create-content-type.xml \
http://ezplatform.dev/api/ezp/v2/content/typegroups/1/types?publish=true

Content Object creation using REST API requires changing Content Type ID in file src/EzSystems/TweetFieldTypeBundle/Resources/misc/create-content.xml to the one created in your installation. Then you can create Content Object, for example using curl (also requires enabling basic auth):

curl -u "admin:publish" -i -H "Accept: application/vnd.ez.api.Content+xml" \
-H "Content-Type: application/vnd.ez.api.ContentCreate+xml" \
-X POST -d @src/EzSystems/TweetFieldTypeBundle/Resources/misc/create-content.xml \
http://ezplatform.dev/api/ezp/v2/content/objects

About

Tweet FieldType for the eZ Platform FieldType tutorial

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 87.3%
  • JavaScript 8.3%
  • Shell 2.9%
  • HTML 1.5%