$companyName
$companyName : string
Name of the company.
Export configuration.
$compatibility : integer
Level of compatibility for data of older PHP exports.
Currently the values 0 and 1 may be used. Value 0 supports the processing of data, that was exported for PHP export 1.6.x or 1.7.x. Value 1 supports the processing of data, that was exported for the current version of PHP export.
i18nGettextPlural(string $lang, string $original, string $plural, string $value) : string
Get a translation checking the plural form.
string | $lang | language code |
string | $original | original string to translate |
string | $plural | plural form of the original string |
string | $value | value to determine plural forms |
translation
newAction(string $name) : \OpenEstate\PhpExport\Action\AbstractAction
Create an action instance.
string | $name | name of requested action |
created action or null, if it is unknown
newLinkProvider(string $name) : \OpenEstate\PhpExport\Provider\AbstractLinkProvider
Create a link provider instance.
string | $name | name of requested provider |
created link provider or null, if it is unknown
newMailer() : \PHPMailer\PHPMailer\PHPMailer|null
Create a mailer instance.
created mailer or null, if the configuration failed
newMapProvider() : \OpenEstate\PhpExport\Provider\AbstractMapProvider
Create a map provider.
map provider
newSession(\OpenEstate\PhpExport\Environment $env) : \OpenEstate\PhpExport\Session\AbstractSession
Create a session instance.
\OpenEstate\PhpExport\Environment | $env | export environment |
created session
newTheme(\OpenEstate\PhpExport\Environment $env) : \OpenEstate\PhpExport\Theme\AbstractTheme|null
Create a theme instance.
\OpenEstate\PhpExport\Environment | $env | export environment |
created theme or null, if the configuration failed
setupAction(\OpenEstate\PhpExport\Action\AbstractAction $action)
Configure an action.
\OpenEstate\PhpExport\Action\AbstractAction | $action | action to configure |
setupEnvironment(\OpenEstate\PhpExport\Environment $env)
Configure the export environment.
\OpenEstate\PhpExport\Environment | $env | export environment |
setupExposeHtml(\OpenEstate\PhpExport\View\ExposeHtml $view)
Set configuration for the HTML view with object details.
\OpenEstate\PhpExport\View\ExposeHtml | $view | view to configure |
setupFavoriteHtml(\OpenEstate\PhpExport\View\FavoriteHtml $view)
Set configuration for the HTML view with favorite listing.
\OpenEstate\PhpExport\View\FavoriteHtml | $view | view to configure |
setupLinkProvider(\OpenEstate\PhpExport\Provider\AbstractLinkProvider $provider)
Configure a link provider.
\OpenEstate\PhpExport\Provider\AbstractLinkProvider | $provider | link provider to configure |
setupListingHtml(\OpenEstate\PhpExport\View\ListingHtml $view)
Set configuration for the HTML view with object listing.
\OpenEstate\PhpExport\View\ListingHtml | $view | view to configure |
setupMailer(\PHPMailer\PHPMailer\PHPMailer $mailer, \OpenEstate\PhpExport\Environment $env)
Configure the mailer.
\PHPMailer\PHPMailer\PHPMailer | $mailer | mailer instance |
\OpenEstate\PhpExport\Environment | $env | export environment |
if the configuration failed
setupMapProvider(\OpenEstate\PhpExport\Provider\AbstractMapProvider $mapProvider)
Configure the map provider.
\OpenEstate\PhpExport\Provider\AbstractMapProvider | $mapProvider | map provider instance |
setupTheme(\OpenEstate\PhpExport\Theme\AbstractTheme $theme)
Configure the theme.
\OpenEstate\PhpExport\Theme\AbstractTheme | $theme | theme instance |