Your IP : 216.73.216.219


Current Path : /home/chauffn/vuzelia/2023/plugins/maximenuck/articlesbydate/
Upload File :
Current File : /home/chauffn/vuzelia/2023/plugins/maximenuck/articlesbydate/articlesbydate.php

<?php
/**
 * @copyright	Copyright (C) 2018 Cédric KEIFLIN alias ced1870
 * https://www.template-creator.com
 * https://www.joomlack.fr
 * @license		GNU/GPL
 * */
 
defined('_JEXEC') or die('Restricted access');
jimport('joomla.event.plugin');

class plgMaximenuckArticlesbydate extends JPlugin {

	private $type = 'articlesbydate';

	function __construct(&$subject, $params) {
		parent::__construct($subject, $params);
	}

	/* 
	 * Send the infos in the source list to add the type in the plugin options
	 *
	 * Return string the source type
	 */
	public function onMaximenuckGetSourceName() {
		$this->loadLanguage();
		return $this->type;
	}
}