Property.php
293 Bytes
<?php
namespace ACP\Column\NetworkSite;
use AC;
abstract class Property extends AC\Column {
abstract public function get_site_property();
public function get_value( $id ) {
$site = get_site( $id );
$property = $this->get_site_property();
return $site->{$property} ?? false;
}
}