This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/main/credits.php

43 lines
2 KiB
PHP
Raw Normal View History

2015-04-01 15:56:51 +00:00
<?php
/*
2015-04-01 17:25:14 +00:00
* Sakura Credits Page
2015-04-01 15:56:51 +00:00
*/
// Declare Namespace
namespace Sakura;
// Include components
2015-04-06 16:15:20 +00:00
require_once str_replace(basename(__DIR__), '', dirname(__FILE__)) .'_sakura/sakura.php';
2015-04-01 15:56:51 +00:00
// Add page specific things
$renderData['page'] = [
2015-08-21 22:07:45 +00:00
2015-04-01 16:46:28 +00:00
'title' => 'Sakura Credits'
2015-08-21 22:07:45 +00:00
2015-04-01 16:46:28 +00:00
];
2015-08-21 22:07:45 +00:00
2015-04-01 16:46:28 +00:00
$renderData['contributors'] = [
2015-08-21 22:07:45 +00:00
'Flashwave' => ['Main developer.', 'http://flash.moe'],
'Kurasha244' => ['Writing the base for the old backend.', 'http://saibateku.net'],
'nookls' => ['Being nookls.', 'http://nookls.org'],
'MallocNull' => ['Sock Chat and debug help.', 'http://aroltd.com'],
'kamil' => ['Pointing out mistakes and fixing them and literally writing the entire payments system.', 'http://krakow.pw'],
'RandomGuy' => ['Coming up with cool things to add and security stuff.', 'http://flashii.net/u/12']
2015-04-01 16:46:28 +00:00
];
2015-08-21 22:07:45 +00:00
2015-04-01 16:46:28 +00:00
$renderData['thirdParty'] = [
2015-08-21 22:07:45 +00:00
'ReCAPTCHA' => ['Providing the Captcha system we use.', 'http://recaptcha.net'],
'Twig' => ['The templating engine used by Sakura.', 'http://twig.sensiolabs.org/'],
'Parsedown' => ['A PHP markdown parser.', 'http://parsedown.org/'],
'Defuse' => ['Making the PBKDF2 implementation for PHP', 'http://defuse.ca/'],
'PHPMailer' => ['Writing PHPMailer and making e-mail sending a not pain in the ass', 'https://github.com/PHPMailer/PHPMailer'],
'PayPal' => ['Making a PayPal API', 'https://paypal.com']
2015-04-01 15:56:51 +00:00
];
// Print page contents
2015-04-06 21:57:17 +00:00
print Templates::render('main/credits.tpl', $renderData);