protected function Box::buildURL in Boxes 7.2
Build the URL string
3 calls to Box::buildURL()
- Box::deleteURL in includes/
boxes.core.inc - View URL
- Box::editURL in includes/
boxes.core.inc - View URL
- Box::viewURL in includes/
boxes.core.inc - View URL
File
- includes/
boxes.core.inc, line 257 - Box classes and plugin interface
Class
- Box
- The Box entity class
Code
protected function buildURL($type) {
$url = $this
->url();
return $url . '/' . $type;
}