* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP * @package admin * @since 2.4 */ class BannerController extends StudipController { public function click_action(Banner $banner) { $banner->clicks += 1; $banner->store(); $this->redirect($banner->getLink()); } }