<?php
/**
 * Installatron Control Panel Integration API
 * frontend.php template
 * Date: 2009-04-08
 *
 * Documentation: http://www.installatron.com/controlpanelapi
 * Support: https://secure.installatron.com/tickets
 *
 * This template includes only the required methods for a "user-centric"
 * control panel setup. For more methods, see the documentation.
 */
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";
    }
}
?>