Skip to content
Snippets Groups Projects
Commit d6b5ebd5 authored by Seamus Lee's avatar Seamus Lee
Browse files

Fix Wiki URLS to point to correct docs url

parent 2643aff7
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ Fetch entity metadata, i.e. the list of fields supported by the entity
## getlist
Used for autocomplete lookups by the
[entityRef](https://wiki.civicrm.org/confluence/display/CRMDOC/EntityRef+Fields) widget
[entityRef](/framework/quickform/entityref.md) widget
## getoptions
......
......@@ -28,7 +28,7 @@ $params['return'] = 'custom_N,custom_O,custom_P';
For setting custom date fields, (ie CustomValue create), date format is `YmdHis`, for example: `20050425000000`.
This is just a brief introduction; each API may have different requirements and allow different formats for accessing the custom data. See the [API function documentation](https://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API) and also read the comments and documentation in each API php file (under civicrm/CRM/api/v3 in your CiviCRM installation) for exact details,
This is just a brief introduction; each API may have different requirements and allow different formats for accessing the custom data. See the [API function documentation](/api/index.md) and also read the comments and documentation in each API php file (under civicrm/CRM/api/v3 in your CiviCRM installation) for exact details,
which vary for each API entity and function.
## Custom Value get
......
......@@ -49,4 +49,4 @@ From the API explorer, you can click on the **Examples** tab to find examples of
## Changelog
All important changes made to the API are be recorded on the wiki at:
[API changes](https://wiki.civicrm.org/confluence/display/CRMDOC/API+changes)
[API changes](/api/changes.md)
......@@ -71,7 +71,7 @@ The recommended AJAX interface has changed between CiviCRM versions as follows:
* version 4.3.x - `CRM.api(...)`
* version 4.4.x onwards - `CRM.api3()`
For details see [API changes](https://wiki.civicrm.org/confluence/display/CRMDOC/API+changes).
For details see [API changes](/api/changes.md).
### crmAPI (AngularJS) {:#angularjs}
......
......@@ -75,7 +75,7 @@ You can also use CRM_Core_Resources to add in inline scripts such as the followi
CRM_Core_Resources::singleton()->addScript('alert("hello");');
```
You can also specify other regions of the page to place the script in (the most common reason for this is because jQuery plugins must be added to the "html-header" region). See [Resource Reference](https://wiki.civicrm.org/confluence/display/CRMDOC/Resource+Reference) for more details.
You can also specify other regions of the page to place the script in (the most common reason for this is because jQuery plugins must be added to the "html-header" region). See [Resource Reference](/framework/resources.md) for more details.
## Using CiviCRM Javascript in non CiviCRM pages
......@@ -121,7 +121,7 @@ If the current user has sufficient permissions (usually "Access CiviCRM") then y
```javascript
CRM.api('entity', 'action', {params}, {success: function});
```
For more details, see [AJAX API](http://wiki.civicrm.org/confluence/display/CRMDOC43/AJAX+Interface) docs.
For more details, see [AJAX API](/api/interfaces.md#ajax-interface) docs.
## Server-Side Variables
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment