URL to files

If you want to get full URL to template folder you can call:

<?php echo $this->modal()->url()->template(); ?>

If you want to get full URL to template folder and file you can call:

<?php echo $this->modal()->url()->template("views/404.php"); ?>

If you want to get full URL to css folder you can call:

<?php echo $this->modal()->url()->css(); ?>

If you want to get full URL to css folder and file you can call:

<?php echo $this->modal()->url()->css("style.css"); ?>

If you want to get full URL to js folder you can call:

<?php echo $this->modal()->url()->js(); ?>

If you want to get full URL to js folder and file you can call:

<?php echo $this->modal()->url()->js("functions.js"); ?>

Complete function list