本文整理汇总了PHP中Base_ThemeCommon::uninstall_default_theme方法的典型用法代码示例。如果您正苦于以下问题:PHP Base_ThemeCommon::uninstall_default_theme方法的具体用法?PHP Base_ThemeCommon::uninstall_default_theme怎么用?PHP Base_ThemeCommon::uninstall_default_theme使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Base_ThemeCommon
的用法示例。
在下文中一共展示了Base_ThemeCommon::uninstall_default_theme方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: uninstall
public function uninstall()
{
Utils_CommonDataCommon::remove('Calling_Codes');
Utils_CommonDataCommon::remove('Countries');
Base_ThemeCommon::uninstall_default_theme($this->get_type());
return true;
}
示例2: uninstall
public function uninstall() {
global $database;
$ret = true;
$ret &= DB::DropTable('utils_commondata_tree');
Base_ThemeCommon::uninstall_default_theme($this->get_type());
return $ret;
}
示例3: uninstall
public function uninstall()
{
Base_ThemeCommon::uninstall_default_theme($this->get_type());
DB::DropTable('epesi_store_modules');
$this->remove_data_dir();
return true;
}
示例4: uninstall
public function uninstall()
{
Base_ThemeCommon::uninstall_default_theme('CRM/Contacts/Activities');
Utils_RecordBrowserCommon::delete_addon('company', 'CRM/Contacts/Activities', 'company_activities');
Utils_RecordBrowserCommon::delete_addon('contact', 'CRM/Contacts/Actitivies', 'contact_activities');
return true;
}
示例5: uninstall
public function uninstall()
{
Base_AclCommon::delete_permission('Calendar');
DB::DropTable('crm_calendar_custom_events_handlers');
Base_ThemeCommon::uninstall_default_theme('CRM/Calendar');
return true;
}
示例6: uninstall
public function uninstall()
{
$ret = true;
if ($ret) {
$ret = Variable::delete('mail_from_addr');
}
if ($ret) {
$ret = Variable::delete('mail_from_name');
}
if ($ret) {
$ret = Variable::delete('mail_use_replyto');
}
if ($ret) {
$ret = Variable::delete('mail_method');
}
if ($ret) {
$ret = Variable::delete('mail_user');
}
if ($ret) {
$ret = Variable::delete('mail_password');
}
if ($ret) {
$ret = Variable::delete('mail_host');
}
if ($ret) {
$ret = Variable::delete('mail_security');
}
if ($ret) {
$ret = Variable::delete('mail_auth');
}
Base_ThemeCommon::uninstall_default_theme($this->get_type());
return $ret;
}
示例7: uninstall
public function uninstall()
{
Base_AclCommon::delete_permission('Fax - Browse');
Base_AclCommon::delete_permission('Fax - Send');
Base_ThemeCommon::uninstall_default_theme($this->get_type());
return true;
}
示例8: uninstall
public function uninstall()
{
Base_ThemeCommon::uninstall_default_theme($this->get_type());
DB::DropTable('base_home_page');
DB::DropTable('base_home_page_clearance');
return true;
}
示例9: uninstall
public function uninstall()
{
Base_ThemeCommon::uninstall_default_theme($this->get_type());
Utils_RecordBrowserCommon::delete_addon('contact', 'CRM/Contacts/NotesAggregate', 'contact_addon');
Utils_RecordBrowserCommon::delete_addon('company', 'CRM/Contacts/NotesAggregate', 'company_addon');
Utils_RecordBrowserCommon::delete_addon('premium_salesopportunity', 'CRM/Contacts/NotesAggregate', 'salesopportunity_addon');
return true;
}
示例10: uninstall
public function uninstall()
{
$ret = true;
$ret &= DB::DropTable('apps_shoutbox_messages');
Base_AclCommon::delete_permission('Shoutbox');
Base_ThemeCommon::uninstall_default_theme($this->get_type());
return $ret;
}
示例11: uninstall
public function uninstall()
{
Base_ThemeCommon::uninstall_default_theme(Base_User_LoginInstall::module_name());
Variable::delete('host_ban_time');
Variable::delete('host_ban_nr_of_tries');
Variable::delete('host_ban_by_login');
return DB::DropTable('user_password') && DB::DropTable('user_login_ban') && DB::DropTable('user_autologin') && DB::DropTable('user_reset_pass');
}
示例12: uninstall
public function uninstall()
{
$ret = true;
$ret &= DB::DropTable('base_notify');
Base_ThemeCommon::uninstall_default_theme($this->get_type());
Utils_CommonDataCommon::remove('Base_Notify');
return $ret;
}
示例13: uninstall
public function uninstall()
{
Base_ThemeCommon::uninstall_default_theme($this->get_type());
Variable::delete('printers_registered', false);
Variable::delete('print_document_types', false);
Variable::delete('print_href_callback', false);
Variable::delete('print_disabled_templates', false);
return true;
}
示例14: uninstall
public function uninstall()
{
Base_AclCommon::delete_permission('Manage Perspective');
$ret = true;
$ret &= DB::DropTable('crm_filters_contacts');
$ret &= DB::DropTable('crm_filters_group');
Base_ThemeCommon::uninstall_default_theme($this->get_type());
return $ret;
}
示例15: uninstall
public function uninstall() {
Base_ThemeCommon::uninstall_default_theme($this->get_type());
$ret = true;
$ret &= DB::DropTable('utils_watchdog_subscription');
$ret &= DB::DropTable('utils_watchdog_category_subscription');
$ret &= DB::DropTable('utils_watchdog_event');
$ret &= DB::DropTable('utils_watchdog_category');
return $ret;
}