Parent Directory
|
Revision Log
|
Revision Graph
Initial commit of inlineimages
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Implementation of hook_install(). |
| 5 | */ |
| 6 | function inlineimages_install() { |
| 7 | switch ($GLOBALS['db_type']) { |
| 8 | case 'mysql': |
| 9 | case 'mysqli': |
| 10 | |
| 11 | break; |
| 12 | case 'pgsql': |
| 13 | |
| 14 | break; |
| 15 | } |
| 16 | |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * Update database hooks |
| 21 | */ |
| 22 | function inlineimages_update_1() { |
| 23 | return _system_update_utf8(array('inlineimages')); |
| 24 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |