eaafe4768d9f2cffdb51e62ab77145fa72d3b492
[yaffs-website] / web / modules / contrib / fontyourface / modules / adobe_edge_fonts / adobe_edge_fonts.install
1 <?php
2
3 /**
4  * @file
5  * Adobe Edge Fonts install file.
6  */
7
8 use Drupal\Core\Url;
9
10 /**
11  * Implements hook_install().
12  */
13 function adobe_edge_fonts_install() {
14   module_set_weight('adobe_edge_fonts', 10);
15   $url = Url::fromRoute('font.settings');
16   drupal_set_message(t('Due to the number of fonts, automated import from install for Adobe Edge Fonts is disabled. Please use @link to import Adobe Edge Fonts.', ['@link' => \Drupal::l('@font-your-face settings', $url)]));
17 }
18
19 /**
20  * Implements hook_uninstall().
21  */
22 function adobe_edge_fonts_uninstall() {
23   fontyourface_delete('adobe_edge_fonts');
24 }