當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Base_ThemeCommon::uninstall_default_theme方法代碼示例

本文整理匯總了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;
 }
開發者ID:cretzu89,項目名稱:EPESI,代碼行數:7,代碼來源:CountriesInstall.php

示例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;
	}
開發者ID:62BRAINS,項目名稱:EPESI,代碼行數:7,代碼來源:CommonDataInstall.php

示例3: uninstall

 public function uninstall()
 {
     Base_ThemeCommon::uninstall_default_theme($this->get_type());
     DB::DropTable('epesi_store_modules');
     $this->remove_data_dir();
     return true;
 }
開發者ID:62BRAINS,項目名稱:EPESI,代碼行數:7,代碼來源:EpesiStoreInstall.php

示例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;
 }
開發者ID:cretzu89,項目名稱:EPESI,代碼行數:7,代碼來源:ActivitiesInstall.php

示例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;
 }
開發者ID:62BRAINS,項目名稱:EPESI,代碼行數:7,代碼來源:CalendarInstall.php

示例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;
 }
開發者ID:cretzu89,項目名稱:EPESI,代碼行數:33,代碼來源:MailInstall.php

示例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;
 }
開發者ID:cretzu89,項目名稱:EPESI,代碼行數:7,代碼來源:FaxInstall.php

示例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;
 }
開發者ID:cretzu89,項目名稱:EPESI,代碼行數:7,代碼來源:HomePageInstall.php

示例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;
 }
開發者ID:cretzu89,項目名稱:EPESI,代碼行數:8,代碼來源:NotesAggregateInstall.php

示例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;
 }
開發者ID:62BRAINS,項目名稱:EPESI,代碼行數:8,代碼來源:ShoutboxInstall.php

示例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');
 }
開發者ID:cretzu89,項目名稱:EPESI,代碼行數:8,代碼來源:LoginInstall.php

示例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;
 }
開發者ID:cretzu89,項目名稱:EPESI,代碼行數:8,代碼來源:NotifyInstall.php

示例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;
 }
開發者ID:62BRAINS,項目名稱:EPESI,代碼行數:9,代碼來源:PrintInstall.php

示例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;
 }
開發者ID:62BRAINS,項目名稱:EPESI,代碼行數:9,代碼來源:FiltersInstall.php

示例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;
	}
開發者ID:62BRAINS,項目名稱:EPESI,代碼行數:9,代碼來源:WatchdogInstall.php


注:本文中的Base_ThemeCommon::uninstall_default_theme方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。