haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
proc
/
thread-self
/
cwd
/
wp-content
/
plugins
/
admin-columns-pro
/
classes
/
Formatter
/
Filename :
LinkCount.php
back
Copy
<?php declare(strict_types=1); namespace ACP\Formatter; use AC; use AC\Helper; use AC\Type\Value; use AC\Type\ValueCollection; class LinkCount implements AC\CollectionFormatter { private bool $add_tooltip; public function __construct(bool $add_tooltip = false) { $this->add_tooltip = $add_tooltip; } public function format(ValueCollection $collection): Value { $urls = iterator_to_array($collection); if (empty($urls)) { throw AC\Exception\ValueNotFoundException::from_id($collection->get_id()); } $value = (string)count($urls); if ($this->add_tooltip) { $value = Helper\Html::create()->tooltip( $value, implode('<br>', array_map([$this, 'trim_tooltip_url'], $urls)) ); } return new Value( $collection->get_id(), $value ); } private function trim_tooltip_url(string $url): string { return Helper\Strings::create()->trim_characters($url, 26); } }