%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/components/com_kunena/views/credits/ |
Upload File : |
<?php /** * Kunena Component * @package Kunena.Site * @subpackage Views * * @copyright (C) 2008 - 2014 Kunena Team. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @link http://www.kunena.org **/ defined ( '_JEXEC' ) or die (); /** * Credits View */ class KunenaViewCredits extends KunenaView { function displayDefault($tpl = null) { $this->intro = JText::sprintf('COM_KUNENA_CREDITS_INTRO', 'http://www.kunena.org/team'); $this->memberList = array( array('name'=>'Matias Griese', 'url'=>'http://www.kunena.org/forum/user/63-matias', 'title'=>JText::_('COM_KUNENA_CREDITS_DEVELOPEMENT')), array('name'=>'Florian Dal Fitto', 'url'=>'http://www.kunena.org/forum/user/1288-xillibit', 'title'=>JText::_('COM_KUNENA_CREDITS_DEVELOPEMENT')), array('name'=>'Joshua Weiss', 'url'=>'http://www.kunena.org/forum/user/10809-coder4life', 'title'=>JText::sprintf('COM_KUNENA_CREDITS_X_AND_Y', JText::_('COM_KUNENA_CREDITS_DESIGN'), JText::_('COM_KUNENA_CREDITS_DEVELOPEMENT'))), array('name'=>'Jelle Kok', 'url'=>'http://www.kunena.org/forum/user/634-810', 'title'=>JText::sprintf('COM_KUNENA_CREDITS_X_AND_Y', JText::_('COM_KUNENA_CREDITS_DESIGN'), JText::_('COM_KUNENA_CREDITS_TESTING'))), array('name'=>'Ron Severdia', 'url'=>'http://www.kunena.org/forum/user/114-severdia', 'title'=>JText::_('COM_KUNENA_CREDITS_DESIGN')), array('name'=>'Janich Rasmussen', 'url'=>'http://www.kunena.org/forum/user/10133-littlejohn', 'title'=>JText::_('COM_KUNENA_CREDITS_CONTRIBUTION')), array('name'=>'Sven Schultschik ', 'url'=>'http://www.kunena.org/forum/user/2171-svanschu', 'title'=>JText::_('COM_KUNENA_CREDITS_LANGUAGES')), array('name'=>'Michael Russell', 'url'=>'http://www.kunena.org/forum/user/997-sozzled', 'title'=>JText::sprintf('COM_KUNENA_CREDITS_X_AND_Y', JText::_('COM_KUNENA_CREDITS_MODERATION'), JText::_('COM_KUNENA_CREDITS_DOCUMENTATION'))), array('name'=>'Richard Binder', 'url'=>'http://www.kunena.org/forum/user/2198-rich', 'title'=>JText::sprintf('COM_KUNENA_CREDITS_X_AND_Y', JText::_('COM_KUNENA_CREDITS_MODERATION'), JText::_('COM_KUNENA_CREDITS_TESTING'))), array('name'=>'Sami Haaranen', 'url'=>'http://www.kunena.org/forum/user/151-mortti', 'title'=>JText::sprintf('COM_KUNENA_CREDITS_X_AND_Y', JText::_('COM_KUNENA_CREDITS_MODERATION'), JText::_('COM_KUNENA_CREDITS_TESTING'))), array('name'=>'Joe Collins', 'url'=>'http://www.kunena.org/forum/user/26335-jiminimonka', 'title'=>JText::sprintf('COM_KUNENA_CREDITS_X_AND_Y', JText::_('COM_KUNENA_CREDITS_MODERATION'), JText::_('COM_KUNENA_CREDITS_TESTING'))), array('name'=>'Oliver Ratzesberger', 'url'=>'http://www.kunena.org/forum/user/64-fxstein', 'title'=>JText::_('COM_KUNENA_CREDITS_FOUNDER')), ); $this->thanks = JText::sprintf('COM_KUNENA_CREDITS_THANKS', 'http://www.kunena.org/team#special_thanks', 'https://www.transifex.com/projects/p/Kunena', 'http://www.kunena.org', 'https://github.com/Kunena/Kunena-Forum/graphs/contributors'); $this->_prepareDocument(); parent::display (); } protected function _prepareDocument(){ $this->setTitle(JText::_('COM_KUNENA_VIEW_CREDITS_DEFAULT')); // TODO: set keywords and description } }