Exemple #1
0
/**
 * Adjust metadata for "getlink" action.
 *
 * @param array $spec
 *   List of fields.
 */
function _civicrm_api3_cxn_getlink_spec(&$spec)
{
    $daoFields = CRM_Cxn_DAO_Cxn::fields();
    $spec['app_guid'] = $daoFields['app_guid'];
    $spec['cxn_guid'] = $daoFields['cxn_guid'];
    $spec['page'] = array('name' => 'page', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Page Type'), 'description' => 'The type of page (eg "settings")', 'maxlength' => 63, 'size' => CRM_Utils_Type::HUGE);
}