Projet

Général

Profil

Paste
Télécharger (360 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / media / modules / media_wysiwyg_view_mode / media_wysiwyg_view_mode.module @ e4215af7

1 85ad3d82 Assos Assos
<?php
2 1e39edcb Assos Assos
/***
3
 * hook_help
4 85ad3d82 Assos Assos
 */
5 1e39edcb Assos Assos
function media_wysiwyg_view_mode_help($path, $arg) {
6
  switch ($path) {
7
    // Main module help for the block module
8
    case 'admin/help#media_wysiwyg_view_mode':
9
      return '<p>' . t('The code that was previously in this module was moved to media_wysiwyg however to uninstall this module this has to be here.') . '</p>';
10 0ccfec7f Assos Assos
11
  }
12
}