mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 08:41:39 +09:00
41 lines
706 B
PHP
41 lines
706 B
PHP
<?php
|
|
|
|
/**
|
|
* Rhymix Default Blacklist for Deprecated Plugins
|
|
*
|
|
* Copyright (c) Rhymix Developers and Contributors
|
|
*/
|
|
return array(
|
|
|
|
// Addons
|
|
'addon' => array(
|
|
'autolang' => true,
|
|
'autowww' => true,
|
|
'baro_upload' => true,
|
|
'elkha_www' => true,
|
|
'fix_domain' => true,
|
|
'fix_mysql_utf8' => true,
|
|
'jquerycdn' => true,
|
|
'member_communication' => true,
|
|
'mobile' => true,
|
|
'session_shield' => true,
|
|
'smartphone' => true,
|
|
'zipperupper' => true,
|
|
),
|
|
|
|
// Modules
|
|
'module' => array(
|
|
'auto_login' => true,
|
|
'errorlogger' => true,
|
|
'homepage' => true,
|
|
'multidomain' => true,
|
|
'seo' => true,
|
|
'syndication' => true,
|
|
'trackback' => true,
|
|
),
|
|
|
|
// Widgets
|
|
'widget' => array(
|
|
|
|
),
|
|
);
|