Phundament 3-0.1-RC1 released

Details on the Yii Extension Page of phundament.

phundament 2.1 beta 9 released

Download beta 9 from GoogleCode.

Read more ...

Super CRUDs

News from the dev-dungeons, we've just finished a very cool new feature: Super CRUDs.

Phundament CLI comes with a p2model and a p2crud command which generates CRUDs with custom input components, relations and a blueprint CSS framework based layout.

Read more ...

World's smallest two-level CSS menu

I do not know if there's some Guinness Record for this, but ... while playing around with our new website I found this:

<div class="p2tree"><?php echo P2Page::renderTree(1) ?></div>

.p2tree {position: relative;}
.p2tree ul li {display: inline;}
.p2tree ul li ul {display: none;position: absolute;}

$('.p2tree UL LI').mouseover(
  function(){$('UL',this).show();}
).mouseout(
  function(){$('UL',this).hide();}
);

RenderTree() is a method from phundament which outputs the current page tree within <ul> <li> tags.

phundament 2.1 beta 8 released

Download beta 8 from GoogleCode and check out the screenshots below.

Read more ...