Last change
on this file since 26033 was
25964,
checked in by rvelices, 11 years ago
|
rv_db_integriry for 2.6
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
826 bytes
|
Rev | Line | |
---|
[3417] | 1 | <?php /* |
---|
| 2 | Plugin Name: RV DB Integrity |
---|
[25964] | 3 | Version: 2.6.a |
---|
[7302] | 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 |
---|
[3417] | 6 | Author: rvelices |
---|
| 7 | Author URI: http://www.modusoptimus.com |
---|
| 8 | */ |
---|
| 9 | |
---|
[7342] | 10 | define('RVDI_DIR' , basename(dirname(__FILE__))); |
---|
| 11 | define('RVDI_PATH' , PHPWG_PLUGINS_PATH . RVDI_DIR . '/'); |
---|
| 12 | |
---|
| 13 | |
---|
[3417] | 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 | { |
---|
[7342] | 18 | load_language('plugin.lang', RVDI_PATH); |
---|
[18955] | 19 | $advanced_features[] = array( |
---|
[7342] | 20 | 'CAPTION' => l10n('Check database integrity'), |
---|
[3417] | 21 | 'URL' => get_admin_plugin_menu_link(dirname(__FILE__).'/check_db.php') |
---|
[18955] | 22 | ); |
---|
[3417] | 23 | return $advanced_features; |
---|
| 24 | } |
---|
| 25 | |
---|
| 26 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.