contributions/usermanagement/controller/tools/dashboards/editor.dashboard.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Default dashboard for editor 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Usermanagement 00007 */ 00008 class EditorDashboard extends DashboardBase { 00009 /** 00010 * Returns the title of the dashboard 00011 */ 00012 public function get_title() { 00013 return tr('Content Management', 'users'); 00014 } 00015 00016 /** 00017 * Return template file name for dashboard 00018 * 00019 * @return string 00020 */ 00021 protected function get_template_file_name() { 00022 return 'users/dashboards/editor'; 00023 } 00024 }