Page MenuHomeGitPull.it

about.php
No OneTemporary

Authored By
Unknown
Size
3 KB
Referenced Files
None
Subscribers
None

about.php

<?php
global $global, $config;
if(!isset($global['systemRootPath'])){
require_once '../videos/configuration.php';
}
?>
<!DOCTYPE html>
<html lang="<?php echo $config->getLanguage(); ?>">
<head>
<title><?php echo $config->getWebSiteTitle(); ?> :: <?php echo __("About"); ?></title>
<?php
include $global['systemRootPath'] . 'view/include/head.php';
?>
</head>
<body class="<?php echo $global['bodyClass']; ?>">
<?php
include $global['systemRootPath'] . 'view/include/navbar.php';
?>
<div class="container">
<div class="bgWhite">
<?php
$custom = "";
if (AVideoPlugin::isEnabled("c4fe1b83-8f5a-4d1b-b912-172c608bf9e3")) {
require_once $global['systemRootPath'] . 'plugin/Customize/Objects/ExtraConfig.php';
$ec = new ExtraConfig();
$custom = $ec->getAbout();
}
if(empty($custom)){
?>
<h1><?php echo __("I would humbly like to thank God for giving me the necessary knowledge, motivation, resources and idea to be able to execute this project. Without God's permission this would never be possible."); ?></h1>
<blockquote class="blockquote">
<h1><?php echo __("For of Him, and through Him, and to Him, are all things: to whom be glory for ever. Amen."); ?></h1>
<footer class="blockquote-footer">Apostle Paul in <cite title="Source Title">Romans 11:36</cite></footer>
</blockquote>
<div class="btn-group btn-group-justified">
<a href="https://www.avideo.com/" class="btn btn-success">Main Site</a>
<a href="https://demo.avideo.com/" class="btn btn-danger">Demo Site</a>
<a href="https://tutorials.avideo.com/" class="btn btn-primary">Tutorials Site</a>
<a href="https://github.com/WWBN/AVideo/issues" class="btn btn-warning">Issues and requests Site</a>
</div>
<span class="label label-success"><?php printf(__("You are running AVideo version %s!"), $config->getVersion()); ?></span>
<span class="label label-success">
<?php printf(__("You can upload max of %s!"), get_max_file_size()); ?>
</span>
<span class="label label-success">
<?php printf(__("You can storage %s minutes of videos!"), (empty($global['videoStorageLimitMinutes']) ? "unlimited" : $global['videoStorageLimitMinutes'])); ?>
</span>
<span class="label label-success">
<?php printf(__("You have %s minutes of videos!"), number_format(getSecondsTotalVideosLength() / 6, 2)); ?>
</span>
<?php
}else{
echo $custom;
}
?>
</div>
</div><!--/.container-->
<?php
include $global['systemRootPath'] . 'view/include/footer.php';
?>
<script>
$(document).ready(function () {
});
</script>
</body>
</html>

File Metadata

Mime Type
text/x-php
Expires
Thu, Aug 27, 14:59 (20 h, 52 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2084700
Default Alt Text
about.php (3 KB)

Event Timeline