layout_object = Registry::get('layout_object'); } function run() { $customer_object = new Customer(Registry::get('base')); $new_customer_count = $customer_object->new_customer_count(); $new_customers = $customer_object->get_new(10); $this->layout_object->assign('new_customer_count', $new_customer_count); $this->layout_object->assign('new_customers', $new_customers); return $this->layout_object->fetch('widgets/new_customers.tpl'); } }