We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bb3f6c commit 5c16678Copy full SHA for 5c16678
layout_custom_theme.install
@@ -0,0 +1,25 @@
1
+<?php
2
+/**
3
+ * @file
4
+ * Update hook and uninstaller for the Layout Custom Theme module
5
+ */
6
+
7
8
+ * Implements hook_install().
9
10
+function layout_custom_theme_install() {
11
+ // Set our weight so that we execute last, to avoid other modules
12
+ // setting a custom theme later.
13
+ module_set_weight('layout_custom_theme', 99);
14
+}
15
16
17
+ * Implements hook_update_N().
18
+ *
19
+ * Set module weight higher so it can override other module custom themes.
20
21
+function layout_custom_theme_update_1001() {
22
23
24
25
0 commit comments