|
Revision 8894, 0.8 KB
(checked in by rvelices, 2 years ago)
|
|
update rv* plugin versions to 2.2.a
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | <?php /* |
|---|
| 2 | Plugin Name: RV DB Integrity |
|---|
| 3 | Version: 2.2.a |
|---|
| 4 | Description: Checks database integrity. After install go to Administration /Tools/Maintenance: "Check database integrity". |
|---|
| 5 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=179 |
|---|
| 6 | Author: rvelices |
|---|
| 7 | Author URI: http://www.modusoptimus.com |
|---|
| 8 | */ |
|---|
| 9 | |
|---|
| 10 | define('RVDI_DIR' , basename(dirname(__FILE__))); |
|---|
| 11 | define('RVDI_PATH' , PHPWG_PLUGINS_PATH . RVDI_DIR . '/'); |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | add_event_handler('get_admin_advanced_features_links', 'rvint_get_admin_advanced_features_links'); |
|---|
| 15 | |
|---|
| 16 | function rvint_get_admin_advanced_features_links($advanced_features) |
|---|
| 17 | { |
|---|
| 18 | load_language('plugin.lang', RVDI_PATH); |
|---|
| 19 | array_push($advanced_features, |
|---|
| 20 | array |
|---|
| 21 | ( |
|---|
| 22 | 'CAPTION' => l10n('Check database integrity'), |
|---|
| 23 | 'URL' => get_admin_plugin_menu_link(dirname(__FILE__).'/check_db.php') |
|---|
| 24 | )); |
|---|
| 25 | return $advanced_features; |
|---|
| 26 | } |
|---|
| 27 | |
|---|
| 28 | ?> |
|---|