HEX
Server: Apache
System: Linux digivps 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC 2025 x86_64
User: www (1000)
PHP: 8.3.15
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/healthyton.com/wp-content/plugins/astro-accounting/astro-accounting.php
<?php

/**
 * The plugin bootstrap file
 *
 * This file is read by WordPress to generate the plugin information in the plugin
 * admin area. This file also includes all of the dependencies used by the plugin,
 * registers the activation and deactivation functions, and defines a function
 * that starts the plugin.
 *
 * @link              https://ashokbasnet.com.np/
 * @since             1.0.0
 * @package           Astro_Accounting
 *
 * @wordpress-plugin
 * Plugin Name:       Astro Accounting
 * Plugin URI:        https://ashokbasnet.com.np/
 * Description:       This is a short description of what the plugin does. It's displayed in the WordPress admin area.
 * Version:           1.0.0
 * Author:            Ashok Basnet
 * Author URI:        https://ashokbasnet.com.np/
 * License:           GPL-2.0+
 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
 * Text Domain:       astro-accounting
 * Domain Path:       /languages
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

/**
 * Currently plugin version.
 * Start at version 1.0.0 and use SemVer - https://semver.org
 * Rename this for your plugin and update it as you release new versions.
 */
define( 'ASTRO_ACCOUNTING_VERSION', '1.0.0' );
define( 'ASTRO_ACCOUNTING_PLUGIN_URL', plugin_dir_url(__FILE__) );
define( 'ASTRO_ACCOUNTING_PLUGIN_PATH', plugin_dir_path(__FILE__) );

/**
 * The code that runs during plugin activation.
 * This action is documented in includes/class-astro-accounting-activator.php
 */
function activate_astro_accounting() {
	require_once plugin_dir_path( __FILE__ ) . 'includes/class-astro-accounting-activator.php';
	Astro_Accounting_Activator::activate();
}

/**
 * The code that runs during plugin deactivation.
 * This action is documented in includes/class-astro-accounting-deactivator.php
 */
function deactivate_astro_accounting() {
	require_once plugin_dir_path( __FILE__ ) . 'includes/class-astro-accounting-deactivator.php';
	Astro_Accounting_Deactivator::deactivate();
}

register_activation_hook( __FILE__, 'activate_astro_accounting' );
register_deactivation_hook( __FILE__, 'deactivate_astro_accounting' );

/**
 * The core plugin class that is used to define internationalization,
 * admin-specific hooks, and public-facing site hooks.
 */
require plugin_dir_path( __FILE__ ) . 'includes/class-astro-accounting.php';

/**
 * Begins execution of the plugin.
 *
 * Since everything within the plugin is registered via hooks,
 * then kicking off the plugin from this point in the file does
 * not affect the page life cycle.
 *
 * @since    1.0.0
 */
function run_astro_accounting() {

	$plugin = new Astro_Accounting();
	$plugin->run();

}

if(!function_exists('dd')){
	function dd($arr, $exit = true){
		echo '<pre>';
		print_r($arr);
		echo '</pre>';
		if($exit){ wp_die(); }
	}
}


run_astro_accounting();