Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

TYPO3 Extending extbase domain models

build Latest Stable Version Monthly Downloads Total Downloads

Installation

via Composer

The recommended way to install EXT:extender is by using Composer:

composer require evoweb/extender

quick introduction

Add the extending classname to your packages Services.yaml and add a tag to it. The tag must contain the name 'extender.extends' and the class it is extending.

Services.yaml

services:

  Fixture\ExtendingExtension\Domain\Model\BlobExtend:
    tags:
      -
        name: 'extender.extends'
        class: Fixture\BaseExtension\Domain\Model\Blob