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
Requires
- php: ^8.2
- remind/extbase: ^1.1 | dev-develop
- remind/headless: ^3.2 | dev-develop
- sabre/vobject: ^4.5
- typo3/cms-core: ^12.4
Requires (Dev)
- slevomat/coding-standard: ^8.14
- squizlabs/php_codesniffer: ^3.7
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; } }