Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Export To Do List

phpFox has a built-in tool to help developers export their app to a package *.zip format.
To enable export tool, you must enable https://docs.phpfox.com/display/FOX4DEVDOC/Enabling+Techie+Mode.

Before exporting your app, you should review Install.php, edit setOthers methods to add author information

Code Block
php
php

    //Set other information for your app
    $this->_publisher = 'Your company name';
    $this->_publisher_url = 'Your company website';

Install.php contains all app configurations, we will explain detail in the next section.

...

Image Added