MsSite.php
591 Bytes
<?php
declare(strict_types=1);
namespace AC\Table\ManageValue;
use AC\Table\ManageValue;
use DomainException;
class MsSite extends ManageValue
{
public function register(): void
{
if (did_action('manage_sites_custom_column')) {
throw new DomainException("Method should be called before the action triggers.");
}
add_action("manage_sites_custom_column", [$this, 'render_value'], 100, 2);
}
public function render_value($column_name, $blog_id): void
{
echo $this->render_cell((string)$column_name, (int)$blog_id);
}
}