<?php
/**
 * Installatron Server Integration API frontend.php
 *
 * For further command documentation:
 *  http://installatron.com/developer/integration
 *
 * @modified 2011-08-26
 * @support support@installatron.com
 * @support http://installatron.com/tickets
 */
abstract class i_gui extends i_gui_default
{
    /**
     * URL path to Installatron.
     *
     * @return  string  URL to /var/installatron/frontened/index.php
     */
    protected function getUrlApp()
    {
        return "/installatron/index.php";
    }

    /**
     * URL path to Installatron's images.
     *
     * @return  string  URL document rooted to /var/installatron/frontened/images/ (without trailing slash).
     */
    protected function getUrlImg()
    {
        return "/installatron/images";
    }
}
