<?php

$currentDir = dirname(__FILE__);

define('_HMWP_NAMESPACE_', 'HMWP');
define('_HMWP_PLUGIN_NAME_', 'hide-my-wordpress');
define('_HMWP_THEME_NAME_', 'default');
define('_HMWP_SUPPORT_SITE_', 'http://wpplugins.tips');
define('_HMWP_SUPPORT_EMAIL_', 'john@wpplugins.tips');

/* Directories */
define('_HMWP_ROOT_DIR_', realpath($currentDir . '/..'));
define('_HMWP_CLASSES_DIR_', _HMWP_ROOT_DIR_ . '/classes/');
define('_HMWP_CONTROLLER_DIR_', _HMWP_ROOT_DIR_ . '/controllers/');
define('_HMWP_MODEL_DIR_', _HMWP_ROOT_DIR_ . '/models/');
define('_HMWP_TRANSLATIONS_DIR_', _HMWP_ROOT_DIR_ . '/languages/');
define('_HMWP_THEME_DIR_', _HMWP_ROOT_DIR_ . '/view/');

/* URLS */
define('_HMWP_URL_', plugins_url() . '/' . _HMWP_PLUGIN_NAME_);
define('_HMWP_THEME_URL_', _HMWP_URL_ . '/view/');

$upload_dir['baseurl'] = network_site_url('/wp-content/uploads');
$upload_dir['basedir'] = ABSPATH . 'wp-content/uploads';
