/[drupal]/contributions/modules/sphinx/sphinx_suggestion.install
ViewVC logotype

Contents of /contributions/modules/sphinx/sphinx_suggestion.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Thu Aug 21 12:14:27 2008 UTC (15 months, 1 week ago) by johsw
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-5--1-1, DRUPAL-5--1-0, HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1
File MIME type: text/x-php
First development release
1 <?php
2
3 function sphinx_suggestion_requirements($phase) {
4 $t = get_t();
5 $pspell = function_exists('pspell_suggest');
6 $requirements['pspell'] = array(
7 'title' => $t('PSPELL'),
8 'value' => $pspell ? 'pspell installed correctly' : 'pspell not installed ('.l('http://www.php.net/manual/en/pspell.installation.php', 'http://www.php.net/manual/en/pspell.installation.php').')',
9 'severity' => $pspell ? REQUIREMENT_OK : REQUIREMENT_ERROR,
10 );
11 return $requirements;
12 }

  ViewVC Help
Powered by ViewVC 1.1.2