admin
4 years ago
plugins
4 years ago
widget
4 years ago
fixes-archive.php
4 years ago
fixes-archives.php
4 years ago
fixes-calendar.php
4 years ago
fixes-dates.php
4 years ago
fixes-misc.php
4 years ago
fixes-permalinks.php
4 years ago
general.php
4 years ago
install.php
4 years ago
parsidate.php
4 years ago
settings.php
4 years ago
install.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | defined( 'ABSPATH' ) or exit( 'No direct script access allowed' ); |
| 4 | |
| 5 | /** |
| 6 | * Plugin installer helper |
| 7 | * |
| 8 | * @author Mobin Ghasempoor |
| 9 | * @package WP-Parsidate |
| 10 | * @subpackage Core/Install |
| 11 | */ |
| 12 | |
| 13 | /** |
| 14 | * Copys files from plugin languages folder to global languages folder |
| 15 | * |
| 16 | * @return void |
| 17 | * @since 1.0 |
| 18 | */ |
| 19 | function wpp_install() { |
| 20 | update_option( 'wpp_settings', array() ); |
| 21 | } |
| 22 | |
| 23 | register_activation_hook( WP_PARSI_ROOT, 'wpp_install' ); |
| 24 |