Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions administrator/components/com_banners/controllers/tracks.raw.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,17 @@
class BannersControllerTracks extends JControllerLegacy
{
/**
* @var string The context for persistent state.
* @since 1.6
* @var string The context for persistent state.
*
* @since 1.6
*/
protected $context = 'com_banners.tracks';

/**
* Proxy for getModel.
*
* @param string $name The name of the model.
* @param string $prefix The prefix for the model class name.
* @param string $name The name of the model.
* @param string $prefix The prefix for the model class name.
*
* @return JModel
* @since 1.6
Expand All @@ -42,12 +43,12 @@ public function getModel($name = 'Tracks', $prefix = 'BannersModel', $config = a
/**
* Display method for the raw track data.
*
* @param boolean If true, the view output will be cached
* @param array An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
* @param boolean If true, the view output will be cached
* @param array An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
*
* @return JController This object to support chaining.
* @return JController This object to support chaining.
* @since 1.5
* @todo This should be done as a view, not here!
* @todo his should be done as a view, not here!
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You stole a T here 😄

*/
public function display($cachable = false, $urlparams = false)
{
Expand Down