TYPO3 – Get content element from extension code
I've not wrote something from long time, so today I give you a little snippet.
If you have to use in your extension a content element from another page, you can use this function to get it from it's uid :
-
function loadContentElement($uid) {
-
-
'tables' => 'tt_content',
-
'source' => $uid,
-
'dontCheckPid' => 1,
-
);
-
-
return $this->cObj->RECORDS($conf);
-
}
Google Maps – Center and fit map to a group of markers
Today I'll explain how you can center and auto zoom to the correct value your map to fit a group of markers.
Suppose that we have our map called myMap and a group of markers called markers (^.^')
Google Maps – InfoWindow layout broken
If you have, like me, your infowindow right corners broken, here's my solution :
Look at your CSS for something like :
If you find a max-width applied on your img tag, remove them and it should be ok
Opening of the Mac AppStore for developers !
Ahead of the release of "Lion" in about three months, Apple now provides the ability for developers to propose applications for its new online store.
It'll open for user in january but developers can submit applications they made.
