Last active
May 10, 2021 13:34
-
-
Save webspectyler/dda62e61be6adb0f724d9cb99dda6cb3 to your computer and use it in GitHub Desktop.
Run in Tinker to make changes to the Duda manifest.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use \Webspec\Duda\Duda; | |
$duda = new Duda; | |
$manifest = $duda->getAppManifest(); | |
//dd($manifest); | |
$manifest['wl_app_profile']['en']['app_name'] = $manifest['app_profile']['en']['app_name']; | |
$manifest['wl_app_profile']['en']['app_logo'] = $manifest['app_profile']['en']['app_logo']; | |
$manifest['wl_app_profile']['en']['app_short_description'] = $manifest['app_profile']['en']['app_short_description']; | |
$manifest['wl_app_profile']['en']['app_long_description'] = $manifest['app_profile']['en']['app_long_description']; | |
$manifest['wl_app_profile']['en']['public_page'] = $manifest['app_profile']['en']['public_page']; | |
$manifest['wl_app_profile']['en']['terms_of_service_page'] = $manifest['app_profile']['en']['terms_of_service_page']; | |
$manifest['wl_app_profile']['en']['privacy_note_page'] = $manifest['app_profile']['en']['privacy_note_page']; | |
$manifest['wl_app_profile']['en']['app_screenshots'] = $manifest['app_profile']['en']['app_screenshots']; | |
$duda->updateAppManifest($manifest); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment