mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-26 05:58:05 +02:00
checkin (broken)
This commit is contained in:
parent
a01abba787
commit
06fec5daf7
21 changed files with 2025 additions and 376 deletions
24
CRM/Contactcats/DAO/ContactCategoryDescription.php
Normal file
24
CRM/Contactcats/DAO/ContactCategoryDescription.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* DAOs provide an OOP-style facade for reading and writing database records.
|
||||
*
|
||||
* DAOs are a primary source for metadata in older versions of CiviCRM (<5.74)
|
||||
* and are required for some subsystems (such as APIv3).
|
||||
*
|
||||
* This stub provides compatibility. It is not intended to be modified in a
|
||||
* substantive way. Property annotations may be added, but are not required.
|
||||
* @property string $id
|
||||
* @property string $contact_id
|
||||
* @property string $category
|
||||
* @property string $next_category
|
||||
*/
|
||||
class CRM_Contactcats_DAO_ContactCategoryDescription extends CRM_Contactcats_DAO_Base {
|
||||
|
||||
/**
|
||||
* Required by older versions of CiviCRM (<5.74).
|
||||
* @var string
|
||||
*/
|
||||
public static $_tableName = 'civicrm_contact_category_description';
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue