class SiteTreeLinkTracking extends Extension (View source)

Adds tracking of links in any HTMLText fields which reference SiteTree or File items.

Attaching this to any DataObject will add four fields which contain all links to SiteTree and File items referenced in any HTMLText fields, and two booleans to indicate if there are any broken links. Call augmentSyncLinkTracking to update those fields with any changes to those fields.

Note that since both SiteTree and File are versioned, LinkTracking and FileTracking will only be enabled for the Stage record.

Note: To support HasBrokenLink for non-SiteTree classes, add a boolean HasBrokenLink field to your db config and this extension will ensure it's flagged appropriately.

Properties

DataObject|SiteTreeLinkTracking $owner
protected SiteTreeLinkTracking_Parser $parser

Methods

public
__construct()

No description

public static 
add_to_class(string $class, string $extensionClass, mixed $args = null)

Called when this extension is added to a particular class

public
setOwner(object $owner)

Set the owner of this extension.

public
mixed
withOwner(mixed $owner, callable $callback, array $args = [])

Temporarily modify the owner. The original owner is ensured to be restored

public
clearOwner()

Clear the current owner, and restore extension to the state prior to the last setOwner()

public
T
getOwner()

Returns the owner of this extension.

public static 
string
get_classname_without_arguments(string $extensionStr)

Helper method to strip eval'ed arguments from a string that's passed to DataObject::$extensions or Object::add_extension().

public
mixed
invokeExtension(object $owner, string $method, array ...$arguments)

Invoke extension point. This will prefer explicit extend prefixed methods.

public
getParser()

Parser for link tracking

public
$this
setParser(SiteTreeLinkTracking_Parser|null $parser = null)

No description

protected
onBeforeWrite()

No description

public
syncLinkTracking()

Public method to call when triggering symlink extension. Can be called externally, or overridden by class implementations.

protected
augmentSyncLinkTracking()

Find HTMLText fields on owner to scrape for links that need tracking

protected
onAfterDelete()

No description

public
int[]
trackLinksInField(string $fieldName, bool $anyBroken = false)

Scrape the content of a field to detect anly links to local SiteTree pages or files

protected
toggleElementClass(DOMElement $domReference, string $class, bool $toggle)

Add the given css class to the DOM element.

protected
updateCMSFields(FieldList $fields)

No description

void
ManyManyThroughList() $SiteTree> LinkTracking()

No description

Details

__construct()

No description

static add_to_class(string $class, string $extensionClass, mixed $args = null)

Called when this extension is added to a particular class

Parameters

string $class
string $extensionClass
mixed $args

setOwner(object $owner)

Set the owner of this extension.

Parameters

object $owner

The owner object

mixed withOwner(mixed $owner, callable $callback, array $args = [])

Temporarily modify the owner. The original owner is ensured to be restored

Parameters

mixed $owner

Owner to set

callable $callback

Callback to invoke

array $args

Args to pass to callback

Return Value

mixed

clearOwner()

Clear the current owner, and restore extension to the state prior to the last setOwner()

T getOwner()

Returns the owner of this extension.

Return Value

T

static string get_classname_without_arguments(string $extensionStr)

Helper method to strip eval'ed arguments from a string that's passed to DataObject::$extensions or Object::add_extension().

Parameters

string $extensionStr

E.g. "Versioned('Stage','Live')"

Return Value

string

Extension classname, e.g. "Versioned"

mixed invokeExtension(object $owner, string $method, array ...$arguments)

Invoke extension point. This will prefer explicit extend prefixed methods.

Parameters

object $owner
string $method
array ...$arguments

Return Value

mixed

SiteTreeLinkTracking_Parser getParser()

Parser for link tracking

$this setParser(SiteTreeLinkTracking_Parser|null $parser = null)

No description

Parameters

SiteTreeLinkTracking_Parser|null $parser

Return Value

$this

protected onBeforeWrite()

No description

syncLinkTracking()

Public method to call when triggering symlink extension. Can be called externally, or overridden by class implementations.

{\SilverStripe\CMS\Model\SiteTreeLinkTracking::augmentSyncLinkTracking}

protected augmentSyncLinkTracking()

Find HTMLText fields on owner to scrape for links that need tracking

protected onAfterDelete()

No description

int[] trackLinksInField(string $fieldName, bool $anyBroken = false)

Scrape the content of a field to detect anly links to local SiteTree pages or files

Parameters

string $fieldName

The name of the field on @owner to scrape

bool $anyBroken

Will be flagged to true (by reference) if a link is broken.

Return Value

int[]

Array of page IDs found (associative array)

protected toggleElementClass(DOMElement $domReference, string $class, bool $toggle)

Add the given css class to the DOM element.

Parameters

DOMElement $domReference

Element to modify.

string $class

Class name to toggle.

bool $toggle

On or off.

protected updateCMSFields(FieldList $fields)

No description

Parameters

FieldList $fields

void ManyManyThroughList() $SiteTree> LinkTracking()

No description

Parameters

) $SiteTree> LinkTracking(

Return Value

void