You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
37 lines
1.2 KiB
<?php
|
|
$plugin_meta = [
|
|
'Plugin Name' => 'Rocket Personal',
|
|
'Description' => 'Accept Rocket Personal payments directly from customers. Perfect for freelancers and small businesses.',
|
|
'Version' => '1.0.0',
|
|
'Author' => 'PipraPay',
|
|
'Author URI' => 'https://piprapay.com/',
|
|
'License' => 'GPL-2.0+',
|
|
'License URI' => 'http://www.gnu.org/licenses/gpl-2.0.txt',
|
|
'Requires at least' => '1.0.0',
|
|
'Plugin URI' => '',
|
|
'Text Domain' => '',
|
|
'Domain Path' => '',
|
|
'Requires PHP' => ''
|
|
];
|
|
|
|
// Load the admin UI rendering function
|
|
function rocket_personal_admin_page() {
|
|
$viewFile = __DIR__ . '/views/admin-ui.php';
|
|
|
|
if (file_exists($viewFile)) {
|
|
include $viewFile;
|
|
} else {
|
|
echo "<div class='alert alert-warning'>Admin UI not found.</div>";
|
|
}
|
|
}
|
|
|
|
// Load the checkout UI rendering function
|
|
function rocket_personal_checkout_page($payment_id) {
|
|
$viewFile = __DIR__ . '/views/checkout-ui.php';
|
|
|
|
if (file_exists($viewFile)) {
|
|
include $viewFile;
|
|
} else {
|
|
echo "<div class='alert alert-warning'>Checkout UI not found.</div>";
|
|
}
|
|
}
|