0c2bfb73abd32ba1e9e867446136892bf5dcb0e7
[yaffs-website] / web / modules / contrib / fontyourface / modules / local_fonts / local_fonts.install
1 <?php
2
3 /**
4  * @file
5  * Local Fonts install file.
6  */
7
8 /**
9  * Implements hook_install().
10  */
11 function local_fonts_install() {
12   module_set_weight('local_fonts', 10);
13   drupal_set_message(t('You may now install your own custom fonts. Remember to follow the EULA for any given font.'));
14 }
15
16 /**
17  * Implements hook_uninstall().
18  */
19 function local_fonts_uninstall() {
20   fontyourface_delete('local_fonts');
21 }