Last change
on this file since 4905 was
3417,
checked in by rvelices, 15 years ago
|
- added rv_db_integrity and rv_sitemap plugins
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
655 bytes
|
Rev | Line | |
---|
[3417] | 1 | <?php /* |
---|
| 2 | Plugin Name: RV DB Integrity |
---|
| 3 | Version: 2.0.b |
---|
| 4 | Description: Checks database integrity. After install go to admin / Advanced features. |
---|
| 5 | Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=179 |
---|
| 6 | Author: rvelices |
---|
| 7 | Author URI: http://www.modusoptimus.com |
---|
| 8 | */ |
---|
| 9 | |
---|
| 10 | add_event_handler('get_admin_advanced_features_links', 'rvint_get_admin_advanced_features_links'); |
---|
| 11 | |
---|
| 12 | function rvint_get_admin_advanced_features_links($advanced_features) |
---|
| 13 | { |
---|
| 14 | array_push($advanced_features, |
---|
| 15 | array |
---|
| 16 | ( |
---|
| 17 | 'CAPTION' => 'Check database integrity', |
---|
| 18 | 'URL' => get_admin_plugin_menu_link(dirname(__FILE__).'/check_db.php') |
---|
| 19 | )); |
---|
| 20 | return $advanced_features; |
---|
| 21 | } |
---|
| 22 | |
---|
| 23 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.