drupal 7 l() function options
Is there a web page out there listing the options for the l() function? I tried searching in google but the results I got were all for drupal 6.
I was going through the Form API videos, and I encountered an instance where the l() function was used, specifically in the creating confirmation forms video (https://buildamodule.com/video/drupal-7-development-core-concepts-how-to...) In the video, a query parameter was used in the l() function.
See docs for l() on api.drupal.org;
also,
l()
can take any options url() can (becausel()
callsurl($path, $options)
at the end of the day).Comments to both links contain quite a lot of examples and some discussion, too.