mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
27 lines
502 B
PHP
27 lines
502 B
PHP
<?php
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
|
die('Not A Valid Entry Point');
|
|
}
|
|
|
|
require_once('modules/DynamicFields/templates/Fields/TemplateText.php');
|
|
#[\AllowDynamicProperties]
|
|
class TemplateCronSchedule extends TemplateText
|
|
{
|
|
public $type='CronSchedule';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
|
|
|
|
|
|
public function get_field_def()
|
|
{
|
|
$def = parent::get_field_def();
|
|
$def['dbType'] = 'varchar';
|
|
return $def;
|
|
}
|
|
}
|