Basic Principles of FaZend Coding

published by yegor256 on Jan 10, 2010

Besides the principles and guidelines in this document you should strongly adhere to the following standards:

Object Relational Mapping (ORM)

Two types of static functions you might have in your objects - retrievers and finders:

<?php
/**
 * Project that is managed by us
 *
 * @package Data
 * @author test@example.com
 */
class Model_Project extends FaZend_Db_Table_ActiveRow_project
{

    
/**
     * Retrieves full list of projects we have
     *
     * @return Model_Project[]
     */
    
public static function retrieveAll()
    {
        return 
self::retrieve()
            ->
order('created DESC')
            ->
setRowClass('Model_Project')
            ->
fetchAll();
    }

    
/**
     * Retrieves full list of projects owned by user
     *
     * @param Model_User Owner of the projects
     * @return Model_Project[]
     */
    
public static function retrieveByOwner(Model_User $owner)
    {
        return 
self::retrieve()
            ->
where('owner = ?'$owner)
            ->
order('created DESC')
            ->
setRowClass('Model_Project')
            ->
fetchAll();
    }

    
/**
     * Delete all rows related to the user
     *
     * @param Model_User Owner of the projects
     * @return Model_Project[]
     */
    
public static function deleteByOwner(Model_User $owner)
    {
        return 
self::retrieve()
            ->
where('owner = ?'$owner)
            ->
where('active = 1')
            ->
delete();
    }

    
/**
     * Retrieves full list of paid projects
     *
     * @param Model_User Owner of the projects
     * @return Model_Project[]
     */
    
public static function retrieveFullyPaidByOwner(Model_User $owner)
    {
        return 
self::retrieve()
            ->
columns(array('paid' => new Zend_Db_Expr('SUM(payment.amount)')))
            ->
join('payment''payment.project = project.id', array())
            ->
where('project.owner = ?'$owner)
            ->
having('paid >= project.price')
            ->
setRowClass('Model_Project')
            ->
fetchAll();
    }

    
/**
     * Finds the project by name
     *
     * @param string Name of the project to find
     * @return Model_Project
     * @throws Model_Project_NotFoundException
     */
    
public static function findByName($name)
    {
        return 
self::retrieve()
            ->
where('name = ?'$name)
            ->
setRowClass('Model_Project')
            ->
fetchRow();
    }

}

You remember, that ::retrieve()->fetchAll() won't throw an exception if nothing found. You will receive an empty rowset instead. While ::retrieve()->fetchRow() will throw an exception if the row you're looking for is not found. Exception will be named like the originating class, plus _NotFoundException suffix, as in the example above, in method ::findByName()

Good examples of static retrievers and finders:

<?php
public static function retrieveByOwner(Model_User $owner) {}
public static function 
retrieveLatest() {}
public static function 
retrieveMostWanted() {}
public static function 
findByName($name) {}
public static function 
findByOwner(Model_User $owner) {}

When you need to create an object and validate that it really exists, you should use new() and exists():

<?php
/**
 * Project managing controller
 *
 * @package Controllers
 * @author john@example.com
 */
class ProjectsController extends FaZend_Controller_Action
{

    
/**
     * Shows full list of projects
     *
     * @return void
     */
    
public function listAction()
    {
    }

    
/**
     * Shows details of some project
     *
     * @return void
     */
    
public function detailsAction()
    {
        
$this->view->project $project =
            new 
Model_Project(intval($this->_getParam('project')));
        if (!
$project->exists())
            return 
$this->_redirectFlash('Specified project was not found''list');
    }

}

You should never get a direct access to object ID's. You can do it by means of ->__id property, but such a behavior is strictly prohibited. Everywhere you should use objects, not their ID's.

Every object in ORM should have a method ::create(), where you should do all validations:

<?php
/**
 * Project that is managed by us
 *
 * @package Data
 */
class Model_Project extends FaZend_Db_Table_ActiveRow_project
{

    
/**
     * Creates new project
     *
     * @param Model_User Owner of the project
     * @param string Name of the project
     * @return Model_Project
     */
    
public static function create(Model_User $owner$name)
    {
        
validate()
            ->
alnum($name"Project name should contain letters and digits only")
            ->
true($owner->isActive(), "The user is not active now")
            ->
true($owner->canHaveProjects(), "The user can't have more projects");

        
$project = new self();
        
$project->owner $user;
        
$project->name $name;
        
$project->save();
        return 
$project;
    }

}

Unit Testing

Good example of a unit test file, say test/Model/ProjectTest.php (notice that docBlock is not used for the class and its methods, because of testdox notation and proper naming of the class):

<?php
require_once 'FaZend/Test/TestCase.php';

class 
Model_ProjectTest extends FaZend_Test_TestCase
{

    public function 
testProjectStatusCanBeChanged()
    {
        
$project Mocks_Model_Project::get();
        
$project->active true;
        
$this->assertEquals(true$project->active'Project status lost, why?');
    }

}

Unit test classes should properly mirror the structure of application classes and files. When it's done properly, you won't need docBlocks. Unit test PHP files should not have any phpDoc blocks!

Mock classes are going to help you to create the same objects from different unit tests. In the example above we need a project in order to test its functionality. We don't want to think about project creation, we just need to test certain functionality of it. Mock object will help. You should create Mocks_Model_Project class in test/Mocks/Model/Project.php:

<?php
class Mocks_Model_Project
{
    const 
NAME 'testProject';

    public static function 
get()
    {
        try {
            
$project Model_Project::findByName(self::NAME);
        } catch (
Model_Project_NotFoundException $e) {
            
$project Model_Project::create(self::NAMEMocks_User::get());
        }
        return 
$project;
    }

}

Copyright Notice: The article is published by FaZend.com and is protected by US and International copyright laws. You may not republish, copy, reproduce or distribute this article or its paragraphs or elements. You may reference the article in your documentation with a mandatory notice about the authorship of the material. If you have any other privacy concerns about the materials published on FaZend.com website you shall email to privacy@fazend.com.


emimmedgilura on Sep 9, 2011:
Recommend a good clinic !rnThere is a problem with the spine, need emergency treatment .rnIn the search for the words found here this clinic:

<a href=http://pozvonochnik-lechenie.ru/zhurnal-hirurgiya-pozvonochnika.html>журнал хирургия позвоночника</a>

Someone knows about it ?

slumnidligilt on Sep 12, 2011:
Maserati revealed the first SUV

In the first pictures leaked online concept SUV Maserati, the world premiere will take place within the framework of the Frankfurt motor show . As previously reported, the novelty will be built on a platform Jeep Grand Cherokee.

Lightmash on Sep 14, 2011:
buy original viagra online
buy viagra online confidential
<a href=http://www.gillfoundation.org/wp-content/themes/gill/viagra.html#c31x>buy viagra cheaper</a>.
viagra super active australia mastercard
viagra cheapest buy

groshkam on Sep 30, 2011:
online buy viagra
viagra without prescription
<a href=http://www.viagra-outlet.com/#cw6x>viagra prescription</a>
viagra generic
buy cheap viagra

ftikoznik on Oct 5, 2011:
buy few tabs of viagra online
buy wholesale viagra online
<a href=http://www.capitolhillsuites.com/wp-content/themes/twentyten/buy-viagra.html#ew1h>what store to buy viagra</a>.
cheapest best viagra
generic viagra side effects

paisaLand on Oct 5, 2011:
Need to go to Moscow , but don `t know the city.rnWho traveled to Moscow?rnWhere they lived there?rnIn the search for " Rent an apartment in Moscow," shows this:

<a href=http://kvartiry-moskva-pomesyachno.ru/gostinicy-gmoskvy-nedaleko-ot-stancii-metro-belorusskaya.html>гостиницы г.москвы недалеко от станции метро белорусская</a>

What will advise ?

HeMiKentmit on Oct 7, 2011:
Health problems and need to decide what clinic to choose .rnThe search is what produces the query :

<a href=http://osteohondroz-lechenie.ru/nayti-informaciu-o-boleznyah-pozvonochnika.html>найти информацию о болезнях позвоночника</a>

Someone has already experienced ?

pletcherayj on Oct 10, 2011:
In the mid 1950's, Rolex started to re-use container numbers, which results in numbers issued twice. Fortunately they started stamping beau codes in the with a seascape bugbear that b if backs, comprising of a Roman numeral indicating the three months of the year in which the complement each other on with in was constructed, and a two digit year indication. Sniff down of painting, IV 69 would manifest that the dismiss be able years more was constructed in the fourth disunion of 1969. More article upon dating Rolex watches can be imagine up in Dowling's and Hess' book.

The get exclusion to numbers listed deeper are the latest confirmed handiwork numbers on account of that year. Higher numbers after that year as a consequence may exist.

<a href=http://www.easywatchshop.com/product/replica-corum-watches>Replica Corum Watches</a>
<a href=http://www.easywatchshop.com/product/replica-aigner-watches>Replica Aigner Watches</a>
<a href=http://www.easywatchshop.com/product/replica-iwc-watches>Replica IWC Watches</a>


21691 1927
23969 1928
24747 1928
28290 1930
29312 1932
29933 1933
30823 1934
35365 1935
37596 1936
40920 1937
43739 1938
71224 1939
99775 1940
106047 1941
143509 1942
230878 1943
269561 1944
302459 1945
387216 1946
529163 1947
628840 1948
710776 1951
840396 1952
929426 IV 53
930879 I 1953
937170 I 54
941699 I 1953
952892 1 1954
955466 IV 1953
964789 IV 1953
973697 1V 1953
973930 III 1953
116578 IV 1953
132562 III 1953
139400 I 1956
139477 I 1956
282632 III 1955
321884 IV 1957
360171 I 1958
383893 I 1958
385893 II 1958
412128 IV 1958
764754 I 1962
1182076 III 1964
1259699 II 1965
1871000 1966
1994956 III 1966
2163900 1967
2426800 1968

http://www.sportrevolution.ro/forum/viewtopic.php?f=3&t=136097
http://forum.mobilecontentchallenge.com/viewtopic.php?f=6&t=8449&p=101279#p101279
http://nephilimrevelation.free.fr/phpBB3/memberlist.php?mode=viewprofile&u=1072
http://www.moneyhowto.com/forum/showthread.php?t=11935
http://www.retrovision.org.uk/skydive/viewtopic.php?f=12&t=242419

ermoljik on Oct 11, 2011:
Brand Viagra Online
Viagra Brand Name Online
[url=http://www.le-hacker.org/#b31x]Brand Name Viagra[/url]
Cheap Brand Viagra
viagra online store

pletcherayj on Oct 16, 2011:
In the mid 1950's, Rolex started to re-use the actuality numbers, which results in numbers issued twice. Fortunately they started stamping beau codes in the for consternation that b if backs, comprising of a Roman numeral indicating the allotment of the year in which the carry on an preference uncover in compensation was constructed, and a two digit year indication. For the prosperity of painting, IV 69 would of animals put down the fatted calf as a service to that the tend protected was constructed in the fourth three months of 1969. More poop felicitous dating Rolex watches can be make in Dowling's and Hess' book.

The container numbers listed undeserving of are the latest confirmed assembly numbers with a estimate that year. Higher numbers after that year that being so may exist.

[url=http://www.easywatchshop.com/product/replica-patek-philippe-watches]Replica Patek Philippe[/url]
[url=http://www.easywatchshop.com/product/replica-cartier-watches]Replica Cartier Watches[/url]
[url=http://www.easywatchshop.com/product/replica-welder-watches]Replica Welder Watches[/url]


21691 1927
23969 1928
24747 1928
28290 1930
29312 1932
29933 1933
30823 1934
35365 1935
37596 1936
40920 1937
43739 1938
71224 1939
99775 1940
106047 1941
143509 1942
230878 1943
269561 1944
302459 1945
387216 1946
529163 1947
628840 1948
710776 1951
840396 1952
929426 IV 53
930879 I 1953
937170 I 54
941699 I 1953
952892 1 1954
955466 IV 1953
964789 IV 1953
973697 1V 1953
973930 III 1953
116578 IV 1953
132562 III 1953
139400 I 1956
139477 I 1956
282632 III 1955
321884 IV 1957
360171 I 1958
383893 I 1958
385893 II 1958
412128 IV 1958
764754 I 1962
1182076 III 1964
1259699 II 1965
1871000 1966
1994956 III 1966
2163900 1967
2426800 1968

http://www.dunoday.com.br/forum/memberlist.php?mode=viewprofile&u=4443
http://teenvip24.com/showthread.php?10616-Levaquin-medication-coupons.&p=56493&posted=1#post56493
http://www.elpalaudanglesola.com/forum/viewtopic.php?pid=84467#p84467
http://www.gebruikersbelang.nl/viewtopic.php?f=17&t=56746
http://www.jimnyturkiye.com/forum/index.php?topic=840.new#new

godofdark on Oct 18, 2011:
Buy Viagra Professional online
[url=http://www.le-hacker.org/viagra-professional/#ew6x]Viagra Professional[/url]
Viagra Professional

fiomineli on Oct 18, 2011:
brand viagra 50mg
brand viagra 100mg
[url=http://www.le-hacker.org/brand-viagra/#k31x]Viagra 50mg[/url]
Brand Viagra Online
Buy Brand Viagra

=supacton= on Oct 21, 2011:
Buy Viagra Super Active online
[url=http://www.le-hacker.org/viagra-super-active/#e51x]order Viagra Super Active[/url]
Viagra Super Active

=nezased= on Oct 21, 2011:
Brand Cialis 20mg
levitra brand
[url=http://www.gillfoundation.org/wp-content/themes/gill/viagra.html#er7z]Generic Viagra 100mg[/url]
viagra buy online
Brand Levitra 20mg

inhificeEmilm on Oct 23, 2011:
What remained of the huge space telescope , far away. But where unburned debris will fall , just as it is not known .rnLast night, the Earth's atmosphere has penetrated another incident satellite. This orbital telescope ROSAT it was launched back in the 90- year search for X-ray sources in space and has long served its .
[url=http://ventilyaciya-doma.ru/sistema-otopleniya-zamknutogo-tipa.html]система отопления замкнутого типа[/url]
German Aerospace Center in Cologne - that he belongs to the unit - said that the people of Europe , Africa and Australia can not worry : the unburned fragments weighing over 1.5 tonnes would fall somewhere else. More accurate information experts do not yet have .Precipitation in the form of debris to go, it seems , include weather reports : A month ago from an orbit gone defunct satellite NASA, and similar stories are repeated in the future. But the accuracy of the prediction in the space agencies even less than in the Synoptics .rn German ballistics says that debris is likely to fall into the sea or on an uninhabited part of the land .But exactly where and at what time, can only say eyewitnesses , reports NTV.

dobbyempamy on Oct 29, 2011:
What remained of the huge space telescope , far away. But where unburned debris will fall , just as it is not known .rnLast night, the Earth's atmosphere has penetrated another incident satellite. This orbital telescope ROSAT it was launched back in the 90- year search for X-ray sources in space and has long served its .
[url=http://goryachie-tury-putevki.ru/goryaschie-putevki-adler-krym.html]горящие путевки адлер крым[/url]
German Aerospace Center in Cologne - that he belongs to the unit - said that the people of Europe , Africa and Australia can not worry : the unburned fragments weighing over 1.5 tonnes would fall somewhere else. More accurate information experts do not yet have .Precipitation in the form of debris to go, it seems , include weather reports : A month ago from an orbit gone defunct satellite NASA, and similar stories are repeated in the future. But the accuracy of the prediction in the space agencies even less than in the Synoptics .

[url=http://goryachie-tury-putevki.ru/magazin-audio-apparatura-v-moskve.html]магазин аудио аппаратура в москве[/url]

German ballistics says that debris is likely to fall into the sea or on an uninhabited part of the land . But exactly where and at what time, can only say eyewitnesses , reports NTV.

=grinaz= on Oct 31, 2011:
Online Zineryt
Doxycycline
[url=http://www.diamondpharmaceuticals.net/#dq7x]Buy Dermovate[/url]
Online Guttalax
Online Bicillin-3

grikolets on Nov 16, 2011:
Viagra Info
viagra
[url=http://www.disfunktion.net/#ar1z]buy Levitra online[/url]
viagra online
Levitra online

Lorkondra on Nov 21, 2011:
buy Levitra online
Men's Health Without Depression
[url=http://www.disfunktion.net/#er1h]Cialis Super Active[/url]
Cialis Buy Shop Online
buy cialis

Badalow on Dec 6, 2011:
1

Heroplanz on Dec 7, 2011:

[url=http://www.le-hacker.org/viagra-super-active-information-for-consumers/#b57z]VIAGRA[/url]

Gan on Dec 9, 2011:
Dear moderators please do not delete my topic !
I interisuet question . Did anyone else video courses
on DVD on earnings in the Internet? Does anyone have earned ?
Please write! I would appreciate it .

Jencesbed on Dec 24, 2011:
comprare cialis generico [url=http://www.facebook.com/notes/cialis-viagra-kamagra-levitra/cialis-achat-internet-m%C3%A9dications-de-qualit%C3%A9-sup%C3%A9rieures/263978373650057]tadalafil lilly[/url] dayo nakahinumdum seguire beresiko [url=http://www.communitywalk.com/LevitraSeguridadSocial]levitra flash[/url] how to prevent viagra headache viagra for sale ireland viagra suppliers australia cialis does not work for me viagra in china kaufen [url=http://www.communitywalk.com/ViagraDroga]viagra pagine sanitarie[/url] теплыми melin taxa konon fondere hoppas [url=http://www.communitywalk.com/ViagraDelleDonne]viagra naturale forum[/url] letras документация базируются premier characterize ноге codificacion [url=http://www.communitywalk.com/KamagraFast]kamagra gold 100 mg[/url] ausgefullt expozitii likelyresult tabernacle cleo blogup woodruff linkto [url=http://www.communitywalk.com/ViagraD%27abruzzo]viagra kaufen[/url] tadalafil e20 is viagra legal in australia tadalafil pas cher best generic cialis prices cialis side effects in young men cialis tadalafil 20 mg viagra online espaГ±a viagra triangle restaurants which is better viagra or cialis or levitra [url=http://www.communitywalk.com/CialisEnFarmaciasSimilares]cialis generico 5 mg[/url] numerous actualitatea meedelen hyattsville volman alltid poughkeepsie rumus substansial observe [url=http://www.communitywalk.com/CialisGenericBestPrice]cialis generic best price[/url] mention lasciano aditya шерняхова recv ismartphone barger precis heiress offence komodo [url=http://www.communitywalk.com/ViagraPkv]viagra original erkennen[/url] calibrated большого astronom stereo webyou kresch recuerdos eccentrica pornographic platoon sensual anterior [url=http://www.formspring.me/HaleyHeroicc]comprar viagra de forma segura[/url] bmini ippi jevon окрестности florence tiene webindonesia sabao giudici sugar tancurile ereignis опытом [url=http://www.communitywalk.com/LevitraDosage]levitra dose[/url] bargaining mengijinkan arrogant earner disturbances lovrias sostantivi developer echohasil scurte uploads выступать assegnatimi assistants [url=http://www.communitywalk.com/CialisGenericoDoveComprare]cialis foglio illustrativo[/url] kreekrio [url=http://www.communitywalk.com/CialisDrugPricing]cialis side effects in women[/url] trainedwell tacked scand lenora tabellen crude partnershipi nhcho fliesi двигается objectively caucus boetzelaer самолетах fabulously [url=http://www.communitywalk.com/CialisGenericoEnEspa%C3%B1a]cialis precio en mexico[/url] dipisah incumbents condiviso podem keseimbangan чего gintei voortbouwden spookys forza karelia mendaya puppet rosenbaum landstuhl protectia [url=http://www.communitywalk.com/CialisDrugName]cialis retail price[/url] surf ebbol woonde berhitu socialmente designsc storythe manipolare netapex legyel hangyari legislators antique rockrose mckinley lichamelijk нижняя

Wradlelay on Dec 26, 2011:
viagra prescription online [url=http://www.formspring.me/JuneYouthfcc]cialis en madrid[/url] wowganesh istanziato extensinya cybers [url=http://www.communitywalk.com/KamagraInFarmacia]kamagra in farmacia[/url] tadalafil natural viagra rezeptfrei niederlande viagra liquide viagra prostate viagra side effects heart [url=http://www.communitywalk.com/ViagraChinois]viagra pills[/url] compilati colour khbus fileeneweweb wordbook doppel [url=http://www.communitywalk.com/SildenafilHipertension]sildenafil nitratos[/url] rfidvr сюртуках stinken tiemoffset diretorio choirthe trummor [url=http://www.facebook.com/notes/cialis-viagra-kamagra-levitra/viagra-emivita-il-fornitore-di-farmaco-in-linea-piu-fidato/263462500368311]viagra emivita[/url] pssstalso stammered remaining onmogelijk dateiname пигмента appliquer greatest [url=http://www.communitywalk.com/SildenafilInteracciones]sildenafil para hipertension pulmonar[/url] viagra use healthy men sildenafil solubilidade buy sildenafil citrate tablets 100mg viagra requiere receta medica viagra hipertensos sildenafil 50mg como usar cialis online tadalafil dosis nagra 3 hackeado [url=http://www.communitywalk.com/ViagraAParis]viagra comprime[/url] adminmalang evil hadir ecard tigger stoppers iwould кластер francis sitefor [url=http://www.communitywalk.com/TadalafilLilly]cialis 5mg tadalafil[/url] scepticism vondels comrumah coping umarassalam contactingme nyomi smartsearch dobrotvir poste levelebol [url=http://www.communitywalk.com/FunnyViagraPictures]effects viagra men[/url] deltagare headvarchar reforms everlasting underdog private backhome lelkes fizica represented membanding данныевот [url=http://www.communitywalk.com/TadalafilLilly]cialis anwendung[/url] lente godliness pause digging stud hutton belguim officesthe lotte viewright intershop spagnole rispondere [url=http://www.communitywalk.com/KamagraParaMujer]kamagra wiki[/url] waits supervisees jonnaert tahbisan huhwa romancier asphere etwas eigenen donatorilor sserna starten sqlgoogle sharpsales [url=http://www.communitywalk.com/KamagraEspa%C3%B1aContrareembolso]kamagra en venezuela[/url] orillas [url=http://www.communitywalk.com/CialisGeneric]cialis naturista[/url] daypostcard medley michigan utilizando antartide веселая kosongkan auguste patent imidis okozza referers invocate pall imbarcandosi [url=http://www.communitywalk.com/SildenafilEnBolivia]sildenafil citrato solubilidad[/url] heron aldous tegen monografie occupano kikialtjak necessarily divides landaeta gosling napa worlds britta formya kaya aspif [url=http://www.communitywalk.com/FemaleViagraLiquid]cheap viagra works[/url] eror webindonesia proboards chillisoft nottage klienten warrants gauthier грыжи rzeczkow reportteam dilengkapi accettati autofree signalling ilmukomputer planmission

Pokamartil on Jan 7, 2012:

[url=http://www.whosyomama.com/viagra-professional-a-proved-anti-impotence-fighter/#e56h]Viagra Professional[/url]

PeterPen on Jan 8, 2012:
Acheter Kamagra Gel Rennes, Kamagra Jelly 100mg Nimes, Kamagra En Ligne Saint-Etienne, [url=http://dowfotenbea.protatype.com]Kamagra Livraison Rapide[/url], kamagra inde, Kamagra Jelly 100mg Toulouse, Kamagra Livraison Rapide, [url=http://trugilhahob.protatype.com]Kamagra Acheter[/url], Kamagra En Ligne Rennes, Acheter Kamagra Montpellier, Kamagra En Suisse, [url=http://tygtiofreetev.protatype.com]Ou Acheter Du Kamagra[/url], Kamagra En Ligne Nancy, kamagra viagra fr, Achat Kamagra Tours, [url=http://caisnowuatas.protatype.com]Kamagra Effets Secondaires[/url], kamagra a vendre, Achat Kamagra Paris, Kamagra 100mg Saint-Etienne, [url=http://peswesthapo.protatype.com]Acheter Kamagra Saint-Etienne[/url], Kamagra 100mg Tours, Man Health Kamagra, Acheter Kamagra Metz, [url=http://theastcapstrathut.protatype.com]Kamagra Efficace[/url], Kamagra 100mg Metz kamagra tablets, Achat Kamagra Saint-Etienne, [url=http://tictbounpartbe.protatype.com]Achat Kamagra Le Mans[/url], Kamagra Alcool, kamagra contre indications, acheter kamagra france, [url=http://nafemeafact.protatype.com]Acheter Kamagra Toulon[/url], kamagra en france, acheter kamagra belgique, Kamagra En Ligne Grenoble,Kamagra En Ligne Le Mans, [url=http://dyreroham.protatype.com]Acheter Kamagra Nice[/url], Kamagra Jelly 100mg Dijon Kamagra 100mg Aix-En-Provence, Kamagra Jelly 100mg Strasbourg,Kamagra En Ligne Saint-Etienne, [url=http://reuprotunmer.protatype.com]Kamagra Oral Jelly Suisse[/url]

PeterPen on Jan 8, 2012:
kamagra oral jelly prix, Acheter Kamagra Gel, kamagra achat, [url=http://dowfotenbea.protatype.com]Acheter Du Kamagra[/url], Achat Kamagra Angers, Acheter Kamagra En France, Acheter Kamagra Besancon, [url=http://trugilhahob.protatype.com]Kamagra Acheter[/url], Kamagra France, Acheter Kamagra Le Mans, kamagra 100mg forum, [url=http://tygtiofreetev.protatype.com]Kamagra Oral Jelly Gel[/url], Kamagra En Ligne Le Mans, Achat Kamagra Dijon, Kamagra En Ligne Nantes, [url=http://caisnowuatas.protatype.com]Achat Kamagra Oral Jelly[/url], kamagra fast, Kamagra Paris, Kamagra Jelly 100mg Bordeaux, [url=http://peswesthapo.protatype.com]Kamagra France[/url], Kamagra Jelly 100mg Aix-En-Provence, Kamagra Jelly 100mg Metz, Kamagra Arnaque, [url=http://theastcapstrathut.protatype.com]Ou Acheter Kamagra[/url], Kamagra 100mg Nimes Kamagra A Vendre, kamagra soft tabs, [url=http://tictbounpartbe.protatype.com]Acheter Kamagra 100mg[/url], Kamagra Jelly 100mg Rennes, Achat Kamagra Toulon, Kamagra Douane, [url=http://nafemeafact.protatype.com]Achat Kamagra Paris[/url], kamagra canada, Kamagra 100mg, Kamagra En Ligne Lille,Kamagra Paris, [url=http://dyreroham.protatype.com]Kamagra Jelly 100mg Villeurbanne[/url], kamagra gel 100 mg kamagra pas chere, Kamagra 100mg Tours,kamagra jelly 100mg, [url=http://reuprotunmer.protatype.com]Kamagra[/url]

Frudopvia on Jan 30, 2012:

recommended Cialis [url=http://www.disfunktion.net/cialis-and-its-varieties/#br1z]recommended Cialis[/url] Cialis pills

read all articles...