Completed
Push — master ( 46e288...43eac3 )
by Michael
12s
created

update.php ➔ xoops_module_update_xoosocialnetwork()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Xoosocialnetwork module
4
 *
5
 * You may not change or alter any portion of this comment or credits
6
 * of supporting developers from this source code or any supporting source code
7
 * which is considered copyrighted (c) material of the original comment or credit authors.
8
 * This program is distributed in the hope that it will be useful,
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
 *
12
 * @copyright       The XOOPS Project http://sourceforge.net/projects/xoops/
13
 * @license         GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
14
 * @package         Xoosocialnetwork
15
 * @since           2.6.0
16
 * @author          Laurent JEN (Aka DuGris)
17
 */
18
19
include_once __DIR__ . '/install.php';
20
21
/**
22
 * @return bool
23
 */
24
function xoops_module_update_xoosocialnetwork()
25
{
26
    return xoops_module_install_xoosocialnetwork();
27
}
28