Collection
3 months ago
Comment
3 months ago
Date
3 months ago
Media
3 months ago
Post
3 months ago
Term
3 months ago
User
3 months ago
Wrap
3 months ago
Actions.php
3 months ago
Aggregate.php
3 months ago
Append.php
3 months ago
ArrayToCollection.php
3 months ago
Avatar.php
3 months ago
AvatarUrl.php
3 months ago
BeforeAfter.php
3 months ago
BooleanLabel.php
3 months ago
CharacterLimit.php
3 months ago
CodeBlock.php
3 months ago
Color.php
3 months ago
ColumnFilter.php
3 months ago
Composite.php
3 months ago
ConditionalValue.php
3 months ago
ContentTypeLink.php
3 months ago
Count.php
3 months ago
CountLabelFormatter.php
3 months ago
DottedPassword.php
3 months ago
EmptyValue.php
3 months ago
ExplodeToCollection.php
3 months ago
ExtendedValueLink.php
3 months ago
FallBack.php
3 months ago
FallBackFormatter.php
3 months ago
FileLink.php
3 months ago
FileSizeReadable.php
3 months ago
ForeignId.php
3 months ago
FormattedJson.php
3 months ago
GroupedIdsToCollection.php
3 months ago
HasValue.php
3 months ago
HumanReadableTime.php
3 months ago
HumanTimeDifference.php
3 months ago
Id.php
3 months ago
IdsToCollection.php
3 months ago
Image.php
3 months ago
ImageSize.php
3 months ago
ImageToCollection.php
3 months ago
ImageUrl.php
3 months ago
ImageUrlsFromContent.php
3 months ago
Implode.php
3 months ago
ImplodeRecursive.php
3 months ago
Kses.php
3 months ago
Latest.php
3 months ago
Linkable.php
3 months ago
Links.php
3 months ago
MapOptionLabel.php
3 months ago
MapToId.php
3 months ago
MapToLabel.php
3 months ago
MenuLink.php
3 months ago
Message.php
3 months ago
Meta.php
3 months ago
MetaCollection.php
3 months ago
NoIcon.php
3 months ago
NullFormatter.php
3 months ago
NumberFormat.php
3 months ago
PathScope.php
3 months ago
PregReplace.php
3 months ago
Prepend.php
3 months ago
ReadingTime.php
3 months ago
RelationIdsCollection.php
3 months ago
SelectOptionMapper.php
3 months ago
SmallBlocks.php
3 months ago
StringSanitizer.php
3 months ago
StripTags.php
3 months ago
Suffix.php
3 months ago
TableRender.php
3 months ago
ToArray.php
3 months ago
TotalSum.php
3 months ago
Trim.php
3 months ago
UrlDecode.php
3 months ago
UsedByMenu.php
3 months ago
WordCount.php
3 months ago
WordLimit.php
3 months ago
Wrapper.php
3 months ago
YesIcon.php
3 months ago
YesNoIcon.php
3 months ago
Linkable.php
58 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\Formatter; |
| 6 | |
| 7 | use AC\Formatter; |
| 8 | use AC\Helper; |
| 9 | use AC\Type\Value; |
| 10 | |
| 11 | class Linkable implements Formatter |
| 12 | { |
| 13 | |
| 14 | private string $target; |
| 15 | |
| 16 | private ?string $custom_label; |
| 17 | |
| 18 | private bool $strip_protocol; |
| 19 | |
| 20 | public function __construct(?string $custom_label = null, string $target = '_self', bool $strip_protocol = false) |
| 21 | { |
| 22 | $this->target = $target; |
| 23 | $this->custom_label = $custom_label; |
| 24 | $this->strip_protocol = $strip_protocol; |
| 25 | } |
| 26 | |
| 27 | public function format(Value $value): Value |
| 28 | { |
| 29 | $url = $value->get_value(); |
| 30 | |
| 31 | if (filter_var($url, FILTER_VALIDATE_URL) && preg_match('/[^\w.-]/', $url)) { |
| 32 | $link_label = $this->get_formatted_label($url); |
| 33 | |
| 34 | return $value->with_value(Helper\Html::create()->link($url, $link_label, ['target' => $this->target])); |
| 35 | } |
| 36 | |
| 37 | if (filter_var($url, FILTER_VALIDATE_EMAIL)) { |
| 38 | $link_label = $this->get_formatted_label($url); |
| 39 | $mailto_link = 'mailto:' . $url; |
| 40 | |
| 41 | return $value->with_value(Helper\Html::create()->link($mailto_link, $link_label, ['target' => $this->target])); |
| 42 | } |
| 43 | |
| 44 | return $value; |
| 45 | } |
| 46 | |
| 47 | private function get_formatted_label(string $url): string |
| 48 | { |
| 49 | $link_label = $this->custom_label ?: $url; |
| 50 | |
| 51 | if ($this->strip_protocol) { |
| 52 | $link_label = urldecode(str_replace(['http://', 'https://'], '', $link_label)); |
| 53 | } |
| 54 | |
| 55 | return $link_label; |
| 56 | } |
| 57 | |
| 58 | } |