本文整理汇总了PHP中CRM_Core_SelectValues::getHours方法的典型用法代码示例。如果您正苦于以下问题:PHP CRM_Core_SelectValues::getHours方法的具体用法?PHP CRM_Core_SelectValues::getHours怎么用?PHP CRM_Core_SelectValues::getHours使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CRM_Core_SelectValues
的用法示例。
在下文中一共展示了CRM_Core_SelectValues::getHours方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: buildQuickForm
/**
* Function to build the form
*
* @return None
* @access public
*/
function buildQuickForm()
{
parent::buildQuickForm();
if ($this->_action & CRM_CORE_ACTION_DELETE) {
return;
}
$activityType = CRM_Core_PseudoConstant::activityType(false);
$this->applyFilter('__ALL__', 'trim');
$this->add('select', 'activity_type_id', ts('Activity Type'), array('' => ts('- select activity type -')) + $activityType, array('onChange' => 'activity_get_description( )'), true);
$this->addRule('activity_type_id', ts('Select a valid activity.'), 'required');
$this->add('text', 'description', ts('Description'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_ActivityType', 'description'), false);
$this->add('text', 'subject', ts('Subject'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Activity', 'subject'), true);
$this->add('date', 'scheduled_date_time', ts('Date and Time'), CRM_Core_SelectValues::date('datetime'), true);
$this->addRule('scheduled_date_time', ts('Select a valid date.'), 'qfDate');
$this->add('select', 'duration_hours', ts('Duration'), CRM_Core_SelectValues::getHours());
$this->add('select', 'duration_minutes', null, CRM_Core_SelectValues::getMinutes());
$this->add('text', 'location', ts('Location'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Activity', 'location'));
$this->add('textarea', 'details', ts('Details'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Activity', 'details'));
$this->add('select', 'status', ts('Status'), CRM_Core_SelectValues::activityStatus(), true);
$this->_groupTree =& CRM_Core_BAO_CustomGroup::getTree('Activity', $this->_id, 0);
if ($this->_action & CRM_CORE_ACTION_VIEW) {
CRM_Core_BAO_CustomGroup::buildViewHTML($this, $this->_groupTree);
} else {
CRM_Core_BAO_CustomGroup::buildQuickForm($this, $this->_groupTree, 'showBlocks1', 'hideBlocks1');
}
}
示例2: buildQuickForm
/**
* Function to build the form
*
* @return None
* @access public
*/
function buildQuickForm()
{
parent::buildQuickForm();
if ($this->_action & CRM_CORE_ACTION_DELETE) {
return;
}
$this->applyFilter('__ALL__', 'trim');
$this->add('text', 'subject', ts('Subject'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Meeting', 'subject'));
$this->addRule('subject', ts('Please enter a valid subject.'), 'required');
$this->addElement('date', 'scheduled_date_time', ts('Date and Time'), CRM_Core_SelectValues::date('datetime'));
$this->addRule('scheduled_date_time', ts('Select a valid date.'), 'qfDate');
$this->addRule('scheduled_date_time', ts('Please select Scheduled Date.'), 'required');
$this->add('select', 'duration_hours', ts('Duration'), CRM_Core_SelectValues::getHours());
$this->add('select', 'duration_minutes', null, CRM_Core_SelectValues::getMinutes());
$this->add('text', 'location', ts('Location'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Meeting', 'location'));
$this->add('textarea', 'details', ts('Details'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Meeting', 'details'));
$status =& $this->add('select', 'status', ts('Status'), CRM_Core_SelectValues::activityStatus());
$this->addRule('status', ts('Please select status.'), 'required');
$this->_groupTree =& CRM_Core_BAO_CustomGroup::getTree('Meeting', $this->_id, 0);
CRM_Core_BAO_CustomGroup::buildQuickForm($this, $this->_groupTree, 'showBlocks1', 'hideBlocks1');
}