| 1 |
<?php |
<?php |
| 2 |
// $Id: textile.module,v 1.21 2007/06/28 00:26:09 joshk Exp $ |
// $Id: textile.module,v 1.19.2.2 2007/06/28 00:53:34 joshk Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* The textile module allows input of Textile shorthand. |
* The textile module allows input of Textile shorthand. |
| 6 |
* |
* |
| 7 |
* @version $Id: textile.module,v 1.21 2007/06/28 00:26:09 joshk Exp $ |
* @version $Id: textile.module,v 1.19.2.2 2007/06/28 00:53:34 joshk Exp $ |
| 8 |
* @copyright Copyright (c) 2003-2007 Jim Riggs. All rights reserved. |
* @copyright Copyright (c) 2003-2007 Jim Riggs. All rights reserved. |
| 9 |
* @author Jim Riggs <drupal at jim and lissa dot com> |
* @author Jim Riggs <drupal at jim and lissa dot com> |
| 10 |
*/ |
*/ |
| 356 |
* |
* |
| 357 |
* Run a check for the library and set an error message if not present. |
* Run a check for the library and set an error message if not present. |
| 358 |
*/ |
*/ |
| 359 |
function hook_enable() { |
function textile_enable() { |
| 360 |
if ($error = _textile_lib_check()) { |
if ($error = _textile_lib_check()) { |
| 361 |
drupal_set_message($error, 'error'); |
drupal_set_message($error, 'error'); |
| 362 |
} |
} |