mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
363 B
26 lines
363 B
<?php
|
|
|
|
/**
|
|
* @package Widgets
|
|
*
|
|
* @file About.php
|
|
* This file is part of MOVIM.
|
|
*
|
|
* @brief A widget which display some help
|
|
*
|
|
* @author Timothée
|
|
*
|
|
* See COPYING for licensing information.
|
|
*/
|
|
|
|
class About extends WidgetBase
|
|
{
|
|
function load()
|
|
{
|
|
}
|
|
|
|
function display()
|
|
{
|
|
$this->view->assign('version', APP_VERSION);
|
|
}
|
|
}
|