From 63536af8753ae77b9038c36945bda8c14fda50a4 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Mon, 6 Feb 2012 11:58:04 +0100 Subject: [PATCH] MINOR Documentation --- code/model/SiteTree.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/code/model/SiteTree.php b/code/model/SiteTree.php index 2611d387..01eea742 100644 --- a/code/model/SiteTree.php +++ b/code/model/SiteTree.php @@ -1,10 +1,16 @@ URLs + * A page is identified during request handling via its "URLSegment" database column. + * As pages can be nested, the full path of a URL might contain multiple segments. + * Each segment is stored in its filtered representation (through {@link URLSegmentFilter}). + * The full path is constructed via {@link Link()}, {@link RelativeLink()} and {@link AbsoluteLink()}. + * You can allow these segments to contain multibyte characters through {@link URLSegmentFilter::$default_allow_multibyte}. + * * @package cms */ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvider,CMSPreviewable {