mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
28 lines
440 B
PHP
28 lines
440 B
PHP
<?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');
|
|
}
|
|
}
|