Updated website for loyaly app content
This commit is contained in:
19
copy_images.php
Normal file
19
copy_images.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
$sourceApp = 'assets/images/loyaly_app_ui.png';
|
||||
$sourceDash = 'assets/images/loyaly_dashboard_ui.png';
|
||||
|
||||
$destApp = 'assets/images/loyaly_app_ui.png';
|
||||
$destDash = 'assets/images/loyaly_dashboard_ui.png';
|
||||
|
||||
if (copy($sourceApp, $destApp)) {
|
||||
echo "Copied App UI\n";
|
||||
} else {
|
||||
echo "Failed to copy App UI\n";
|
||||
}
|
||||
|
||||
if (copy($sourceDash, $destDash)) {
|
||||
echo "Copied Dashboard UI\n";
|
||||
} else {
|
||||
echo "Failed to copy Dashboard UI\n";
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user