unset($attributes['multiple']);
$extra = NULL;
}
- // @see http://wiki.civicrm.org/confluence/display/CRMDOC/crmDatepicker
+ // @see https://docs.civicrm.org/dev/en/latest/framework/ui/#date-picker
if ($type == 'datepicker') {
// Support minDate/maxDate properties
if (isset($extra['minDate'])) {
* Access var from javascript:
* CRM.vars.myNamespace.foo // "bar"
*
- * @see http://wiki.civicrm.org/confluence/display/CRMDOC/Javascript+Reference
+ * @see https://docs.civicrm.org/dev/en/latest/standards/javascript/
*
* @param string $nameSpace
* Usually the name of your extension.
$postMessage = ts('You can <a href="%1">click here</a> to try running the 4.2 upgrade script again. <a href="%2" target="_blank">(Review upgrade documentation)</a>',
[
1 => CRM_Utils_System::url('civicrm/upgrade', 'reset=1'),
- 2 => 'http://wiki.civicrm.org/confluence/display/CRMDOC/Installation+and+Upgrades',
+ 2 => CRM_Utils_System::docURL2('sysadmin/upgrade', TRUE),
]);
$template->assign('postMessage', $postMessage);
angular.module('crmUtil', CRM.angRequires('crmUtil'));
// Angular implementation of CRM.api3
- // @link http://wiki.civicrm.org/confluence/display/CRMDOC/AJAX+Interface#AJAXInterface-CRM.api3
+ // @link https://docs.civicrm.org/dev/en/latest/api/interfaces/#angularjs
//
// Note: To mock API results in unit-tests, override crmApi.backend, e.g.
// var apiSpy = jasmine.createSpy('crmApi');
return result;
}
+ // https://docs.civicrm.org/dev/en/latest/api/interfaces/#ajax
CRM.api4 = function(entity, action, params, index) {
return new Promise(function(resolve, reject) {
if (typeof entity === 'string') {
/**
* AJAX api
- * @link http://wiki.civicrm.org/confluence/display/CRMDOC/AJAX+Interface#AJAXInterface-CRM.api3
+ * @link https://docs.civicrm.org/dev/en/latest/api/interfaces/#ajax
*/
CRM.api3 = function(entity, action, params, status) {
if (typeof(entity) === 'string') {
"use strict";
/**
- * @see http://wiki.civicrm.org/confluence/display/CRMDOC/crmDatepicker
+ * @see https://docs.civicrm.org/dev/en/latest/framework/ui/#date-picker
*/
$.fn.crmDatepicker = function(options) {
return $(this).each(function() {
}
/**
- * Define any CiviCRM Settings Overrides per http://wiki.civicrm.org/confluence/display/CRMDOC/Override+CiviCRM+Settings
+ * Define any CiviCRM Settings Overrides per https://docs.civicrm.org/sysadmin/en/latest/customize/settings/
*
* Uncomment and edit the below as appropriate.
*/