2013-05-04 00:17:56 +00:00
|
|
|
<?php
|
2018-01-13 14:40:34 +00:00
|
|
|
/**
|
|
|
|
* @file mod/videos.php
|
|
|
|
*/
|
2018-01-25 02:08:45 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-15 19:51:56 +00:00
|
|
|
use Friendica\Content\Nav;
|
2018-10-24 06:15:24 +00:00
|
|
|
use Friendica\Content\Pager;
|
2017-11-07 02:22:52 +00:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 18:33:59 +00:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-31 14:35:50 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2017-08-26 06:04:21 +00:00
|
|
|
use Friendica\Core\System;
|
2018-07-21 12:40:21 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-01-02 16:15:43 +00:00
|
|
|
use Friendica\Model\Attach;
|
2017-12-07 14:04:24 +00:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-17 00:21:56 +00:00
|
|
|
use Friendica\Model\Group;
|
2018-02-05 12:47:06 +00:00
|
|
|
use Friendica\Model\Item;
|
2018-01-15 02:22:39 +00:00
|
|
|
use Friendica\Model\Profile;
|
2019-01-07 04:49:13 +00:00
|
|
|
use Friendica\Model\User;
|
2018-01-13 14:40:34 +00:00
|
|
|
use Friendica\Protocol\DFRN;
|
2018-10-17 12:19:58 +00:00
|
|
|
use Friendica\Util\Security;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
function videos_init(App $a)
|
|
|
|
{
|
|
|
|
if ($a->argc > 1) {
|
2018-01-13 14:40:34 +00:00
|
|
|
DFRN::autoRedir($a, $a->argv[1]);
|
2018-07-25 02:54:00 +00:00
|
|
|
}
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
if ((Config::get('system', 'block_public')) && (!local_user()) && (!remote_user())) {
|
2013-05-04 00:17:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-15 19:51:56 +00:00
|
|
|
Nav::setSelected('home');
|
2015-09-30 16:50:44 +00:00
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
if ($a->argc > 1) {
|
2013-05-04 00:17:56 +00:00
|
|
|
$nick = $a->argv[1];
|
2015-12-01 17:31:08 +00:00
|
|
|
$user = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
|
2018-07-21 13:10:13 +00:00
|
|
|
DBA::escape($nick)
|
2013-05-04 00:17:56 +00:00
|
|
|
);
|
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
if (!DBA::isResult($user)) {
|
2013-05-04 00:17:56 +00:00
|
|
|
return;
|
2018-07-25 02:54:00 +00:00
|
|
|
}
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2015-12-01 17:31:08 +00:00
|
|
|
$a->data['user'] = $user[0];
|
|
|
|
$a->profile_uid = $user[0]['uid'];
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2018-01-15 04:44:39 +00:00
|
|
|
$profile = Profile::getByNickname($nick, $a->profile_uid);
|
2015-12-01 17:31:08 +00:00
|
|
|
|
2017-11-19 22:03:39 +00:00
|
|
|
$account_type = Contact::getAccountType($profile);
|
2015-05-26 12:32:40 +00:00
|
|
|
|
2019-05-18 15:33:35 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate("widget/vcard.tpl");
|
2015-05-26 12:32:40 +00:00
|
|
|
|
2018-10-31 14:35:50 +00:00
|
|
|
$vcard_widget = Renderer::replaceMacros($tpl, [
|
2015-12-01 18:47:23 +00:00
|
|
|
'$name' => $profile['name'],
|
|
|
|
'$photo' => $profile['photo'],
|
2018-01-01 20:51:02 +00:00
|
|
|
'$addr' => defaults($profile, 'addr', ''),
|
2015-12-01 17:31:08 +00:00
|
|
|
'$account_type' => $account_type,
|
2018-01-01 20:51:02 +00:00
|
|
|
'$pdesc' => defaults($profile, 'pdesc', ''),
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
// If not there, create 'aside' empty
|
|
|
|
if (!isset($a->page['aside'])) {
|
2013-05-04 00:17:56 +00:00
|
|
|
$a->page['aside'] = '';
|
2018-07-25 02:54:00 +00:00
|
|
|
}
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
$a->page['aside'] .= $vcard_widget;
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate("videos_head.tpl");
|
2019-04-28 02:18:30 +00:00
|
|
|
$a->page['htmlhead'] .= Renderer::replaceMacros($tpl);
|
2013-05-04 00:17:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
function videos_post(App $a)
|
|
|
|
{
|
2015-05-23 20:35:02 +00:00
|
|
|
$owner_uid = $a->data['user']['uid'];
|
|
|
|
|
2016-12-20 10:33:04 +00:00
|
|
|
if (local_user() != $owner_uid) {
|
2018-10-19 18:11:27 +00:00
|
|
|
$a->internalRedirect('videos/' . $a->data['user']['nickname']);
|
2016-12-20 10:33:04 +00:00
|
|
|
}
|
2015-05-23 20:35:02 +00:00
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
if (($a->argc == 2) && !empty($_POST['delete']) && !empty($_POST['id'])) {
|
2015-05-23 20:35:02 +00:00
|
|
|
$video_id = $_POST['id'];
|
|
|
|
|
2019-01-04 06:45:08 +00:00
|
|
|
if (Attach::exists(['id' => $video_id, 'uid' => local_user()])) {
|
2019-01-02 16:15:43 +00:00
|
|
|
// delete the attachment
|
|
|
|
Attach::delete(['id' => $video_id, 'uid' => local_user()]);
|
2018-07-25 02:54:00 +00:00
|
|
|
|
2019-01-02 16:15:43 +00:00
|
|
|
// delete items where the attach is used
|
|
|
|
Item::deleteForUser(['`attach` LIKE ? AND `uid` = ?',
|
|
|
|
'%attach/' . $video_id . '%',
|
|
|
|
local_user()
|
|
|
|
], local_user());
|
2015-05-23 20:35:02 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 18:11:27 +00:00
|
|
|
$a->internalRedirect('videos/' . $a->data['user']['nickname']);
|
2015-05-23 20:35:02 +00:00
|
|
|
return; // NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-10-19 18:11:27 +00:00
|
|
|
$a->internalRedirect('videos/' . $a->data['user']['nickname']);
|
2016-02-05 20:52:39 +00:00
|
|
|
}
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
function videos_content(App $a)
|
|
|
|
{
|
2013-05-04 00:17:56 +00:00
|
|
|
// URLs (most aren't currently implemented):
|
|
|
|
// videos/name
|
|
|
|
// videos/name/upload
|
|
|
|
// videos/name/upload/xxxxx (xxxxx is album name)
|
|
|
|
// videos/name/album/xxxxx
|
|
|
|
// videos/name/album/xxxxx/edit
|
|
|
|
// videos/name/video/xxxxx
|
|
|
|
// videos/name/video/xxxxx/edit
|
|
|
|
|
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
if ((Config::get('system', 'block_public')) && (!local_user()) && (!remote_user())) {
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Public access denied.') . EOL);
|
2013-05-04 00:17:56 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-05-23 20:35:02 +00:00
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
if (empty($a->data['user'])) {
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('No videos selected') . EOL );
|
2013-05-04 00:17:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//$phototypes = Photo::supportedTypes();
|
|
|
|
|
|
|
|
$_SESSION['video_return'] = $a->cmd;
|
|
|
|
|
|
|
|
//
|
2015-05-23 20:35:02 +00:00
|
|
|
// Parse arguments
|
2013-05-04 00:17:56 +00:00
|
|
|
//
|
2018-07-25 02:54:00 +00:00
|
|
|
if ($a->argc > 3) {
|
2013-05-04 00:17:56 +00:00
|
|
|
$datatype = $a->argv[2];
|
2018-07-25 02:54:00 +00:00
|
|
|
} elseif(($a->argc > 2) && ($a->argv[2] === 'upload')) {
|
2013-05-04 00:17:56 +00:00
|
|
|
$datatype = 'upload';
|
2018-07-25 02:54:00 +00:00
|
|
|
} else {
|
2013-05-04 00:17:56 +00:00
|
|
|
$datatype = 'summary';
|
2018-07-25 02:54:00 +00:00
|
|
|
}
|
2013-05-04 00:17:56 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Setup permissions structures
|
|
|
|
//
|
|
|
|
$can_post = false;
|
|
|
|
$visitor = 0;
|
|
|
|
$contact = null;
|
|
|
|
$remote_contact = false;
|
|
|
|
$contact_id = 0;
|
|
|
|
|
|
|
|
$owner_uid = $a->data['user']['uid'];
|
|
|
|
|
2019-01-06 17:37:48 +00:00
|
|
|
$community_page = (($a->data['user']['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false);
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
if ((local_user()) && (local_user() == $owner_uid)) {
|
2013-05-04 00:17:56 +00:00
|
|
|
$can_post = true;
|
2018-07-25 02:54:00 +00:00
|
|
|
} elseif ($community_page && remote_user()) {
|
|
|
|
if (!empty($_SESSION['remote'])) {
|
|
|
|
foreach ($_SESSION['remote'] as $v) {
|
|
|
|
if ($v['uid'] == $owner_uid) {
|
|
|
|
$contact_id = $v['cid'];
|
|
|
|
break;
|
2013-05-04 00:17:56 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-25 02:54:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($contact_id > 0) {
|
|
|
|
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval($owner_uid)
|
|
|
|
);
|
|
|
|
|
|
|
|
if (DBA::isResult($r)) {
|
|
|
|
$can_post = true;
|
|
|
|
$remote_contact = true;
|
|
|
|
$visitor = $contact_id;
|
2013-05-04 00:17:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-01 20:51:02 +00:00
|
|
|
$groups = [];
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2018-01-01 20:51:02 +00:00
|
|
|
// perhaps they're visiting - but not a community page, so they wouldn't have write access
|
2018-07-25 02:54:00 +00:00
|
|
|
if (remote_user() && (!$visitor)) {
|
2013-05-04 00:17:56 +00:00
|
|
|
$contact_id = 0;
|
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
if (!empty($_SESSION['remote'])) {
|
2017-03-21 16:02:59 +00:00
|
|
|
foreach($_SESSION['remote'] as $v) {
|
|
|
|
if($v['uid'] == $owner_uid) {
|
2013-05-04 00:17:56 +00:00
|
|
|
$contact_id = $v['cid'];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-25 02:54:00 +00:00
|
|
|
|
|
|
|
if ($contact_id > 0) {
|
2017-12-17 00:21:56 +00:00
|
|
|
$groups = Group::getIdsByContactId($contact_id);
|
2013-05-04 00:17:56 +00:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval($owner_uid)
|
|
|
|
);
|
2018-07-25 02:54:00 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($r)) {
|
2013-05-04 00:17:56 +00:00
|
|
|
$remote_contact = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
if ($a->data['user']['hidewall'] && (local_user() != $owner_uid) && (!$remote_contact)) {
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Access to this item is restricted.') . EOL);
|
2013-05-04 00:17:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-17 19:30:41 +00:00
|
|
|
$sql_extra = Security::getPermissionsSQLByUserId($owner_uid, $remote_contact, $groups);
|
2013-05-04 00:17:56 +00:00
|
|
|
|
|
|
|
$o = "";
|
|
|
|
|
|
|
|
// tabs
|
|
|
|
$_is_owner = (local_user() && (local_user() == $owner_uid));
|
2019-05-20 19:09:33 +00:00
|
|
|
$o .= Profile::getTabs($a, 'videos', $_is_owner, $a->data['user']['nickname']);
|
2013-05-04 00:17:56 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// dispatch request
|
|
|
|
//
|
2018-07-25 02:54:00 +00:00
|
|
|
if ($datatype === 'upload') {
|
2013-05-04 00:17:56 +00:00
|
|
|
return; // no uploading for now
|
|
|
|
|
|
|
|
// DELETED -- look at mod/photos.php if you want to implement
|
|
|
|
}
|
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
if ($datatype === 'album') {
|
2013-05-04 00:17:56 +00:00
|
|
|
return; // no albums for now
|
|
|
|
|
|
|
|
// DELETED -- look at mod/photos.php if you want to implement
|
2015-05-23 20:35:02 +00:00
|
|
|
}
|
2013-05-04 00:17:56 +00:00
|
|
|
|
|
|
|
|
2018-07-25 02:54:00 +00:00
|
|
|
if ($datatype === 'video') {
|
2013-05-04 00:17:56 +00:00
|
|
|
return; // no single video view for now
|
|
|
|
|
|
|
|
// DELETED -- look at mod/photos.php if you want to implement
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default - show recent videos (no upload link for now)
|
|
|
|
//$o = '';
|
|
|
|
|
2018-10-24 06:15:24 +00:00
|
|
|
$total = 0;
|
2013-05-04 00:17:56 +00:00
|
|
|
$r = q("SELECT hash FROM `attach` WHERE `uid` = %d AND filetype LIKE '%%video%%'
|
|
|
|
$sql_extra GROUP BY hash",
|
|
|
|
intval($a->data['user']['uid'])
|
|
|
|
);
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($r)) {
|
2018-10-24 06:15:24 +00:00
|
|
|
$total = count($r);
|
2013-05-04 00:17:56 +00:00
|
|
|
}
|
2018-10-24 15:42:59 +00:00
|
|
|
|
|
|
|
$pager = new Pager($a->query_string, 20);
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2017-04-14 22:42:44 +00:00
|
|
|
$r = q("SELECT hash, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`created`) AS `created`,
|
|
|
|
ANY_VALUE(`filename`) AS `filename`, ANY_VALUE(`filetype`) as `filetype`
|
|
|
|
FROM `attach`
|
2013-05-04 00:17:56 +00:00
|
|
|
WHERE `uid` = %d AND filetype LIKE '%%video%%'
|
2017-04-14 22:42:44 +00:00
|
|
|
$sql_extra GROUP BY hash ORDER BY `created` DESC LIMIT %d , %d",
|
2013-05-04 00:17:56 +00:00
|
|
|
intval($a->data['user']['uid']),
|
2018-10-24 06:15:24 +00:00
|
|
|
$pager->getStart(),
|
|
|
|
$pager->getItemsPerPage()
|
2013-05-04 00:17:56 +00:00
|
|
|
);
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$videos = [];
|
2018-07-25 02:54:00 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($r)) {
|
2016-12-20 20:15:53 +00:00
|
|
|
foreach ($r as $rr) {
|
2017-11-27 06:44:49 +00:00
|
|
|
$alt_e = $rr['filename'];
|
2018-08-19 01:52:21 +00:00
|
|
|
/// @todo The album isn't part of the above query. This seems to be some unfinished code that needs to be reworked completely.
|
2018-08-29 18:28:13 +00:00
|
|
|
$rr['album'] = '';
|
2017-11-27 06:44:49 +00:00
|
|
|
$name_e = $rr['album'];
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$videos[] = [
|
2013-05-04 00:17:56 +00:00
|
|
|
'id' => $rr['id'],
|
2018-08-29 18:28:13 +00:00
|
|
|
'link' => System::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/video/' . $rr['hash'],
|
2018-01-22 14:16:25 +00:00
|
|
|
'title' => L10n::t('View Video'),
|
2017-08-26 07:32:10 +00:00
|
|
|
'src' => System::baseUrl() . '/attach/' . $rr['id'] . '?attachment=0',
|
2016-12-20 11:36:51 +00:00
|
|
|
'alt' => $alt_e,
|
|
|
|
'mime' => $rr['filetype'],
|
2018-01-15 13:05:12 +00:00
|
|
|
'album' => [
|
2017-08-26 07:32:10 +00:00
|
|
|
'link' => System::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($rr['album']),
|
2013-05-04 00:17:56 +00:00
|
|
|
'name' => $name_e,
|
2018-01-22 14:16:25 +00:00
|
|
|
'alt' => L10n::t('View Album'),
|
2018-01-15 13:05:12 +00:00
|
|
|
],
|
|
|
|
];
|
2013-05-04 00:17:56 +00:00
|
|
|
}
|
|
|
|
}
|
2015-05-23 20:35:02 +00:00
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('videos_recent.tpl');
|
2018-10-31 14:35:50 +00:00
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
2018-01-22 14:16:25 +00:00
|
|
|
'$title' => L10n::t('Recent Videos'),
|
2016-12-20 11:36:51 +00:00
|
|
|
'$can_post' => $can_post,
|
2018-07-25 02:54:00 +00:00
|
|
|
'$upload' => [L10n::t('Upload New Videos'), System::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/upload'],
|
2016-12-20 11:36:51 +00:00
|
|
|
'$videos' => $videos,
|
2018-07-25 02:54:00 +00:00
|
|
|
'$delete_url' => (($can_post) ? System::baseUrl() . '/videos/' . $a->data['user']['nickname'] : false)
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2018-10-24 15:42:59 +00:00
|
|
|
$o .= $pager->renderFull($total);
|
2018-07-25 02:54:00 +00:00
|
|
|
|
2013-05-04 00:17:56 +00:00
|
|
|
return $o;
|
|
|
|
}
|