filesystem.php
13 years ago
formating.php
13 years ago
modules.php
13 years ago
objects.php
13 years ago
plugins.php
13 years ago
system.php
13 years ago
themes.php
13 years ago
users.php
13 years ago
system.php
37 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Functions related to WordPress system. |
| 4 | * |
| 5 | * @version $Rev: 198515 $ |
| 6 | * @author Jordi Canals |
| 7 | * @copyright Copyright (C) 2008, 2009, 2010 Jordi Canals |
| 8 | * @license GNU General Public License version 2 |
| 9 | * @link http://alkivia.org |
| 10 | * @package Alkivia |
| 11 | * @subpackage Framework |
| 12 | * |
| 13 | |
| 14 | Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat> |
| 15 | |
| 16 | This program is free software; you can redistribute it and/or |
| 17 | modify it under the terms of the GNU General Public License |
| 18 | version 2 as published by the Free Software Foundation. |
| 19 | |
| 20 | This program is distributed in the hope that it will be useful, |
| 21 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 22 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 23 | GNU General Public License for more details. |
| 24 | |
| 25 | You should have received a copy of the GNU General Public License |
| 26 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 27 | */ |
| 28 | |
| 29 | /** |
| 30 | * Checks is we are running on WordPress MU |
| 31 | * @return boolean |
| 32 | */ |
| 33 | function ak_is_mu() |
| 34 | { |
| 35 | return ( defined('VHOST') ) ? true : false; |
| 36 | } |
| 37 |