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