remind/contacts

REMIND - Contacts

Installs: 209

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:typo3-cms-extension

v1.0.0 2024-04-24 12:39 UTC

This package is auto-updated.

Last update: 2025-03-27 15:18:42 UTC


README

Add custom fields

Use XCLASSing to extend base contact model and add additional fields.

<?php

declare(strict_types=1);

use Remind\Contacts\Domain\Model\Contact as DefaultContact;
use Remind\Extension\Domain\Model\Contact;

defined('TYPO3') || die('Access denied.');

(function (): void {
    $GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects'][DefaultContact::class] = ['className' => Contact::class];
})();

Add VCard fields

To add fields to the VCard simply use XCLASSing like described before and override the getVCard method.

<?php

declare(strict_types=1);

namespace Remind\Extension\Domain\Model;

use Remind\Contacts\Domain\Model\Contact as BaseContact;
use Sabre\VObject\Component\VCard;

class Contact extends BaseContact
{
    public function getVCard(): VCard
    {
        $result = parent::getVCard();
        $result->add(
            'TITLE',
            ['Remind Developer'],
        );
        return $result;
    }
}