@@ -219,21 +219,35 @@ public static function settings($domainID = NULL) {
219
219
}
220
220
221
221
/**
222
- * Construct a URL based on a logical service address. URL building follows a few rules :
222
+ * Construct a URL based on a logical service address. For example :
223
223
*
224
- * 1. You should initialize with a baseline URL (e.g. 'frontend://civicrm/profile/view?id=123&gid=456').
224
+ * Civi::url('frontend://civicrm/user?reset=1');
225
+ *
226
+ * Civi::url()
227
+ * ->setScheme('frontend')
228
+ * ->setPath(['civicrm', 'user'])
229
+ * ->setQuery(['reset' => 1])
230
+ *
231
+ * URL building follows a few rules:
232
+ *
233
+ * 1. You may initialize with a baseline URL.
225
234
* 2. The scheme indicates the general type of URL ('frontend://', 'backend://', 'asset://', 'assetBuilder://').
226
- * 3. The URL object provides getters, setters, and adders (e.g. `getScheme()`, `setPath(...)`, `addQuery(...)`)
235
+ * 3. The result object provides getters, setters, and adders (e.g. `getScheme()`, `setPath(...)`, `addQuery(...)`)
227
236
* 4. Strings are raw. Arrays are auto-encoded. (`addQuery('name=John+Doughnut')` or `addQuery(['name' => 'John Doughnut'])`)
228
237
* 5. You may use variable expressions (`id=[contact]&gid=[profile]`).
229
238
* 6. The URL can be cast to string (aka `__toString()`).
230
239
*
231
- * Here are several examples:
240
+ * If you are converting from `CRM_Utils_System::url()` to `Civi::url()`, then be sure to:
241
+ *
242
+ * - Pay attention to the scheme (eg 'current://' vs 'frontend://')
243
+ * - Pay attention to HTML escaping, as the behavior changed:
244
+ * - Civi::url() returns plain URLs (eg "id=100&gid=200") by default
245
+ * - CRM_Utils_System::url() returns HTML-escaped URLs (eg "id=100&gid=200") by default
232
246
*
233
- * Ex: Link to constituent's dashboard (specifically on frontend UI)
234
- * $url = Civi::url('frontend://civicrm/user?reset=1');
247
+ * Here are several examples:
235
248
*
236
249
* Ex: Link to constituent's dashboard (on frontend UI or backend UI -- based on the active scheme of current page-view)
250
+ * $url = Civi::url('current://civicrm/user?reset=1');
237
251
* $url = Civi::url('//civicrm/user?reset=1');
238
252
*
239
253
* Ex: Link to constituent's dashboard (with method calls - good for dynamic options)
@@ -263,13 +277,13 @@ public static function settings($domainID = NULL) {
263
277
* $url = Civi::url('frontend://civicrm/ajax/api4/[entity]/[action]')
264
278
* ->addVars(['entity' => 'Foo', 'action' => 'bar']);
265
279
*
266
- * @param string $logicalUri
280
+ * @param string|null $logicalUri
267
281
* Logical URI. The scheme of the URI may be one of:
268
282
* - 'frontend://' (Front-end page-route for constituents)
269
283
* - 'backend://' (Back-end page-route for staff)
270
- * - 'service://` (Web-service page-route for automated integrations; aka webhooks and IPNs)
284
+ * - 'service://' (Web-service page-route for automated integrations; aka webhooks and IPNs)
271
285
* - 'current://' (Whichever UI is currently active)
272
- * - 'default://'(Whichever UI is recorded in the metadata)
286
+ * - 'default://' (Whichever UI is recorded in the metadata)
273
287
* - 'asset://' (Static asset-file; see \Civi::paths())
274
288
* - 'assetBuilder://' (Dynamically-generated asset-file; see \Civi\Core\AssetBuilder)
275
289
* - 'ext://' (Static asset-file provided by an extension)
@@ -282,11 +296,10 @@ public static function settings($domainID = NULL) {
282
296
* - 't': text (aka `setHtmlEscape(FALSE)`)
283
297
* - 's': ssl (aka `setSsl(TRUE)`)
284
298
* - 'c': cache code for resources (aka Civi::resources()->addCacheCode())
285
- * FIXME: Should we have a flag for appending 'resCacheCode'?
286
299
* @return \Civi\Core\Url
287
300
* URL object which may be modified or rendered as text.
288
301
*/
289
- public static function url (string $ logicalUri , ?string $ flags = NULL ): \Civi \Core \Url {
302
+ public static function url (? string $ logicalUri = NULL , ?string $ flags = NULL ): \Civi \Core \Url {
290
303
return new \Civi \Core \Url ($ logicalUri , $ flags );
291
304
}
292
305
0 commit comments