View file core/components/sql/post/fetch_htags.sql

File size: 1.14Kb
/*
@*************************************************************************@
@ Software author: Mansur Altamirov (Mansur_TL)							  @
@ Author_url 1: https://www.instagram.com/mansur_tl                       @
@ Author_url 2: http://codecanyon.net/user/mansur_tl                      @
@ Author E-mail: vayart.help@gmail.com                                    @
@*************************************************************************@
@ ColibriSM - The Ultimate Modern Social Media Sharing Platform           @
@ Copyright (c) 2020 - 2021 ColibriSM. All rights reserved.               @
@*************************************************************************@
*/

SELECT * FROM `<?php echo($data['t_htags']); ?>`
	
	WHERE `posts` > 0

	AND (`time` >= <?php echo strtotime("this week"); ?> OR `time` >= <?php echo strtotime("last day of previous month 00:00"); ?> OR `time` >= <?php echo strtotime(date("Y:01:01 00:00:00")); ?> OR `time` > 0)

	ORDER BY `time` DESC, `posts` DESC

<?php if($data['offset']): ?>
	LIMIT <?php echo($data['limit']); ?> OFFSET <?php echo($data['offset']); ?>;
<?php else: ?>
	LIMIT <?php echo($data['limit']); ?>;
<?php endif; ?>