Page 4 of 5

Re: Bludit v4 - Alpha version

Posted: Wed Sep 13, 2023 3:41 am
by CCDzine
Misteric wrote: Mon Jul 10, 2023 7:49 am

Code: Select all

<?php 
	if(!isset($_GET['page'])){
		$getPage = 1;
	} else {
		$getPage = $_GET['page'];
	} 
	?>
	<ul class="list-group flex-md-row">
		<?php if($getPage != 1) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl(); ?>?page=1">First</a>
		</li>
		<?php } ?>
		<?php if ($getPage >= 3) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl(); ?>?page=<?php echo $getPage - 2; ?>"><?php echo $getPage - 2; ?></a>
		</li>
		<?php } ?>
		<?php if ($getPage >= 2) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl(); ?>?page=<?php echo $getPage - 1; ?>"><?php echo $getPage - 1; ?></a>
		</li>
		<?php } ?>
		<?php if ($getPage) { ?>
		<li class="list-group-item">
			<a class="btn btn-warning" href="<?php echo Theme::siteUrl().'?page='.$getPage; ?>"><?php echo $getPage; ?></a>
		</li>
		<?php } ?>
		<?php if (Paginator::numberOfPages()-1 >= $getPage) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl().'?page='.$getPage + 1; ?>"><?php echo $getPage + 1; ?></a>
		</li>
		<?php } ?>
		<?php if (Paginator::numberOfPages()-2 >= $getPage) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl().'?page='.$getPage + 2; ?>"><?php echo $getPage + 2; ?></a>
		</li>
		<?php } ?>
		<?php if(Paginator::numberOfPages() != $getPage) { ?>
		<li class="list-group-item">
			<a class="btn btn-dark" href="<?php echo Theme::siteUrl().'?page='.Paginator::numberOfPages(); ?>">Last</a>
		</li>;
		<?php } ?>
		
	</ul>
Thank you for this. I added prev/next links and SVG icons. This was a great help for we new to Bludit.

Re: Bludit v4 - Alpha version

Posted: Fri Feb 02, 2024 11:55 am
by randomuser
Hello,

Is there any news about the v4 ?

Can't find anything on https://blog.bludit.com/bludit-4-road-map, neither on Github (no branch), etc

Thanks a lot ;)

Re: Bludit v4 - Alpha version

Posted: Tue Mar 05, 2024 12:26 pm
by Surreal9951
randomuser wrote: Fri Feb 02, 2024 11:55 am Hello,

Is there any news about the v4 ?

Can't find anything on https://blog.bludit.com/bludit-4-road-map, neither on Github (no branch), etc

Thanks a lot ;)
I also join the question. How does it look like with the further development? ;)

Re: Bludit v4 - Alpha version

Posted: Wed Jul 17, 2024 3:44 am
by jmonroe
Any updates on when v4 will be releases? Been working on it since 2021. Haven't seen much activity in the way of pushing forward with new features/version.

Also, multi-user self-registration would be an awesome plugin/feature to have in Bludit.

Re: Bludit v4 - Alpha version

Posted: Wed Jul 17, 2024 11:45 pm
by arfa
The question has already asked: "what news on 4?"
I am increasing my commit with 3.15 and kind of imagine that 4 is either...
- not going to happen
- easy enough upgrade
- not going to happen; 2021 is quite a good while ago now.

3.15 pretty much does what I want and is accessible enough for mods. Great kit.
Edi & Diego could do with more thanks?

cheers - ak

Re: Bludit v4 - Alpha version

Posted: Wed Aug 21, 2024 9:53 am
by Jey14
I'm also following up on this. If you have any more info to share...Thanx

Re: Bludit v4 - Alpha version

Posted: Fri Sep 13, 2024 12:01 am
by bayerberg
poke! any news when do we get v4? I have a couple of cool things almost ready to go, need v4 to launch :)

Re: Bludit v4 - Alpha version

Posted: Sun Nov 10, 2024 11:41 pm
by Torsten_Kelsch
It’s nice that new 3.x versions appear from time to time, but I find version 4 very promising because of nestable static pages etc. So it would be kind if Diego could leave us any informations if he plans to work on Bludit 4 or if this new branch can be seen as dead and no longer developed …

Re: Bludit v4 - Alpha version

Posted: Sun Nov 24, 2024 11:29 am
by agg1401
I have high expectations from Bludit, I hope this script doesn't die. Because the others in the market can't even come close to this.

Re: Bludit v4 - Alpha version

Posted: Sun Nov 24, 2024 11:00 pm
by Torsten_Kelsch
agg1401 wrote: Sun Nov 24, 2024 11:29 am I have high expectations from Bludit, I hope this script doesn't die. Because the others in the market can't even come close to this.
Branch 3 is developed actively, only 4 seems to have been stopped.