David Ansermot Web Developer / TYPO3 Integrator

2nov/110

TYPO3 – Get FCE’s header title in your DataStructure

Hi, today I'll give you a small but usefull tip if you use FCEs in your installations.
I prefere use the FCE's standard header title to name my FCEs and so display this title on the frontend.

2déc/100

TYPO3 4.5 beta2 available

The TYPO3 team has announced the availability of TYPO3 4.5 beta2 for download.

Wiki page
Download TYPO3 4.5 beta2

3nov/100

Magento – Actives CMS pages dynamic menu

Here's a little snippet to help you to build a dynamic menu listing the actives CMS pages from Magento.

  1. <div>
  2.     <?php $collection = Mage::getModel('cms/page')->getCollection()->addStoreFilter(Mage::app()->getStore()->getId());?>
  3.     <?php  $collection->getSelect()
  4.           ->where('is_active = 1'); ?>
  5.     <ul>
  6.     <?php foreach ($collection as $page): ?>
  7.       <?php $PageData = $page->getData(); ?>
  8.       <?php if($PageData['identifier']!='no-route') { ?>
  9.       <li>
  10.         <a href="/<?php echo $PageData['identifier']?>"><?php echo $PageData['title'] ?></a>
  11.       </li>
  12.       <?php } ?>
  13.     <?php endforeach; ?>
  14. </ul></div>
2juin/100

We All Like to Reblog

Have you ever come across a blog post that you enjoyed so much you wanted to easily share it with the readers of your own blog? Sure, you can copy and paste the link and perhaps even a snippet of text with your own comments, but overall it’s not a particularly enjoyable experience. We wanted to change this and make sharing other posts with your readers as easy as posting to your blog.

Read more...

4mai/100

Spip 2.1 is out

The new version of SPIP 2.1 is out. After a long wait, this new version brings huge changes.
This new version opens to the modularization of functionality in the form of extensions and plugins, as proposed by all the other CMS.

But Spip has also undergone other changes as an improvement of the cache, more security. It is also compatible with PHP 5.3 and includes the library Jquery 1.4.2 and 2.8.2 pclzip.
It is now more flexible and more structured with an improved debugging.
A statement of this new version is available.

Spip website