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.
28 lines
438 B
28 lines
438 B
<?php
|
|
|
|
/**
|
|
* @package Widgets
|
|
*
|
|
* @file Notifs.php
|
|
* This file is part of MOVIM.
|
|
*
|
|
* @brief The notification widget
|
|
*
|
|
* @author Timothée Jaussoin <edhelas@gmail.com>
|
|
*
|
|
* @version 1.0
|
|
* @date 16 juin 2011
|
|
*
|
|
* Copyright (C)2010 MOVIM project
|
|
*
|
|
* See COPYING for licensing information.
|
|
*/
|
|
|
|
class Tabs extends WidgetBase
|
|
{
|
|
function load()
|
|
{
|
|
$this->addcss('tabs.css');
|
|
$this->addjs('tabs.js');
|
|
}
|
|
}
|