mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-25 23:38:06 +02:00
24 lines
509 B
PHP
24 lines
509 B
PHP
<?php
|
|
namespace Civi\Api4;
|
|
|
|
use Civi\Api4\Action\ContactCategoryDefinition\Get;
|
|
|
|
/**
|
|
* ContactCategoryDefinition entity.
|
|
*
|
|
* Provided by the Contact Categories extension.
|
|
*
|
|
* @package Civi\Api4
|
|
*/
|
|
class ContactCategoryDefinition extends Generic\DAOEntity {
|
|
|
|
/**
|
|
* @param bool $checkPermissions
|
|
* @return DAOGetAction
|
|
*/
|
|
public static function get($checkPermissions = TRUE) {
|
|
return (new Get(static::getEntityName(), __FUNCTION__))
|
|
->setCheckPermissions($checkPermissions);
|
|
}
|
|
|
|
}
|