diff --git a/template/domain.php b/template/domain.php index bccec1c..1949d66 100644 --- a/template/domain.php +++ b/template/domain.php @@ -1,48 +1,51 @@ . /* * This is the template for the website domain dashboard page * * Called from: * domain.php * * Available variables: * $domain object Domain * $plan object Plan */ // unuseful when load directly defined( 'BOZ_PHP' ) or die; // pass the same arguments to the sub-templates $args = [ 'domain' => $domain, 'plan' => $plan, ]; // spawn the mailboxes list template( 'mailboxes', $args ); // spawn the mail forwardings list template( 'mailforwards', $args ); // spawn the ftp list template( 'ftp-users', $args ); // show some links to the plan template( 'domain-plan-section', $args ); + +// show Domain activity +template( 'domain-activity', $args );