Author: dbellettini
Date: 2010-02-26 16:07:47 +0100 (Fri, 26 Feb 2010)
New Revision: 28308
Added:
plugins/dvbNewsletterPlugin/trunk/config/
plugins/dvbNewsletterPlugin/trunk/config/doctrine/
plugins/dvbNewsletterPlugin/trunk/config/doctrine/schema.yml
plugins/dvbNewsletterPlugin/trunk/lib/
plugins/dvbNewsletterPlugin/trunk/lib/filter/
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterListFormFilter.class.php
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterListSubscriberFormFilter.class.php
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterSubscriberFormFilter.class.php
plugins/dvbNewsletterPlugin/trunk/lib/form/
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterListForm.class.php
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterListSubscriberForm.class.php
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterSubscriberForm.class.php
plugins/dvbNewsletterPlugin/trunk/lib/model/
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterList.class.php
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListSubscriber.class.php
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListSubscriberTable.class.php
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListTable.class.php
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterSubscriber.class.php
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterSubscriberTable.class.php
plugins/dvbNewsletterPlugin/trunk/modules/
plugins/dvbNewsletterPlugin/trunk/modules/dvbNewsletterSubscription/
plugins/dvbNewsletterPlugin/trunk/modules/dvbNewsletterSubscription/actions/
plugins/dvbNewsletterPlugin/trunk/modules/dvbNewsletterSubscription/actions/dvbNewsletterSubscriptionsActions.php
plugins/dvbNewsletterPlugin/trunk/modules/dvbNewsletterSubscription/lib/
plugins/dvbNewsletterPlugin/trunk/modules/dvbNewsletterSubscription/lib/BaseDvbNewsletterSubscriptionActions.php
Log:
First import
Added: plugins/dvbNewsletterPlugin/trunk/config/doctrine/schema.yml
===================================================================
--- plugins/dvbNewsletterPlugin/trunk/config/doctrine/schema.yml
(rev 0)
+++ plugins/dvbNewsletterPlugin/trunk/config/doctrine/schema.yml
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,79 @@
+#The MIT License
+#
+#Copyright (c) 2010 Davide Bellettini <[email protected]>
+#
+#Permission is hereby granted, free of charge, to any person obtaining a copy
+#of this software and associated documentation files (the "Software"), to deal
+#in the Software without restriction, including without limitation the rights
+#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+#copies of the Software, and to permit persons to whom the Software is
+#furnished to do so, subject to the following conditions:
+#
+#The above copyright notice and this permission notice shall be included in
+#all copies or substantial portions of the Software.
+#
+#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+#THE SOFTWARE.
+options:
+ charset: utf8
+ collate: utf8_general_ci
+
+dvbNewsletterList:
+ columns:
+ id:
+ type: integer(4)
+ unsigned: true
+ autoincrement: true
+ primary: true
+ name:
+ type: string(255)
+ notnull: true
+ relations:
+ Subscribers:
+ foreignAlias: Newsletters
+ class: Subscriber
+ refClass: NewsletterSubscriber
+ actAs:
+ Timestampable: ~
+
+dvbNewsletterSubscriber:
+ columns:
+ id:
+ type: integer(4)
+ unsigned: true
+ autoincrement: true
+ primary: true
+ email:
+ type: string(255)
+ notnull: true
+ unique: true
+ actAs:
+ Timestampable: ~
+
+dvbNewsletterListSubscriber:
+ columns:
+ dvb_newsletter_list_id:
+ type: integer(4)
+ unsigned: true
+ primary: true
+ dvb_newsletter_subscriber_id:
+ type: integer(4)
+ unsigned: true
+ primary: true
+ relations:
+ dvbNewsletterList:
+ foreignAlias: NewsletterSubscribers
+ onDelete: 'NO ACTION'
+ onUpdate: CASCADE
+ dvbNewsletterSubscriber:
+ foreignAlias: NewsletterSubscribers
+ onDelete: CASCADE
+ onUpdate: CASCADE
+ actAs:
+ Timestampable: ~
+
\ No newline at end of file
Added:
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterListFormFilter.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterListFormFilter.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterListFormFilter.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,36 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/**
+ * PlugindvbNewsletterList form.
+ *
+ * @package ##PROJECT_NAME##
+ * @subpackage filter
+ * @author ##AUTHOR_NAME##
+ * @version SVN: $Id: sfDoctrineFormFilterPluginTemplate.php 23810
2009-11-12 11:07:44Z Kris.Wallsmith $
+ */
+abstract class PlugindvbNewsletterListFormFilter extends
BasedvbNewsletterListFormFilter
+{
+}
Added:
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterListSubscriberFormFilter.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterListSubscriberFormFilter.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterListSubscriberFormFilter.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,36 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/**
+ * PlugindvbNewsletterListSubscriber form.
+ *
+ * @package ##PROJECT_NAME##
+ * @subpackage filter
+ * @author ##AUTHOR_NAME##
+ * @version SVN: $Id: sfDoctrineFormFilterPluginTemplate.php 23810
2009-11-12 11:07:44Z Kris.Wallsmith $
+ */
+abstract class PlugindvbNewsletterListSubscriberFormFilter extends
BasedvbNewsletterListSubscriberFormFilter
+{
+}
Added:
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterSubscriberFormFilter.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterSubscriberFormFilter.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/filter/doctrine/PlugindvbNewsletterSubscriberFormFilter.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,36 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/**
+ * PlugindvbNewsletterSubscriber form.
+ *
+ * @package ##PROJECT_NAME##
+ * @subpackage filter
+ * @author ##AUTHOR_NAME##
+ * @version SVN: $Id: sfDoctrineFormFilterPluginTemplate.php 23810
2009-11-12 11:07:44Z Kris.Wallsmith $
+ */
+abstract class PlugindvbNewsletterSubscriberFormFilter extends
BasedvbNewsletterSubscriberFormFilter
+{
+}
Added:
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterListForm.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterListForm.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterListForm.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,36 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/**
+ * PlugindvbNewsletterList form.
+ *
+ * @package ##PROJECT_NAME##
+ * @subpackage form
+ * @author ##AUTHOR_NAME##
+ * @version SVN: $Id: sfDoctrineFormPluginTemplate.php 23810 2009-11-12
11:07:44Z Kris.Wallsmith $
+ */
+abstract class PlugindvbNewsletterListForm extends BasedvbNewsletterListForm
+{
+}
Added:
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterListSubscriberForm.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterListSubscriberForm.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterListSubscriberForm.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,36 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/**
+ * PlugindvbNewsletterListSubscriber form.
+ *
+ * @package ##PROJECT_NAME##
+ * @subpackage form
+ * @author ##AUTHOR_NAME##
+ * @version SVN: $Id: sfDoctrineFormPluginTemplate.php 23810 2009-11-12
11:07:44Z Kris.Wallsmith $
+ */
+abstract class PlugindvbNewsletterListSubscriberForm extends
BasedvbNewsletterListSubscriberForm
+{
+}
Added:
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterSubscriberForm.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterSubscriberForm.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/form/doctrine/PlugindvbNewsletterSubscriberForm.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,36 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/**
+ * PlugindvbNewsletterSubscriber form.
+ *
+ * @package ##PROJECT_NAME##
+ * @subpackage form
+ * @author ##AUTHOR_NAME##
+ * @version SVN: $Id: sfDoctrineFormPluginTemplate.php 23810 2009-11-12
11:07:44Z Kris.Wallsmith $
+ */
+abstract class PlugindvbNewsletterSubscriberForm extends
BasedvbNewsletterSubscriberForm
+{
+}
Added:
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterList.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterList.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterList.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,39 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/**
+ * PlugindvbNewsletterList
+ *
+ * This class has been auto-generated by the Doctrine ORM Framework
+ *
+ * @package ##PACKAGE##
+ * @subpackage ##SUBPACKAGE##
+ * @author ##NAME## <##EMAIL##>
+ * @version SVN: $Id: Builder.php 7200 2010-02-21 09:37:37Z beberlei $
+ */
+abstract class PlugindvbNewsletterList extends BasedvbNewsletterList
+{
+
+}
\ No newline at end of file
Added:
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListSubscriber.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListSubscriber.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListSubscriber.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,39 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/**
+ * PlugindvbNewsletterListSubscriber
+ *
+ * This class has been auto-generated by the Doctrine ORM Framework
+ *
+ * @package ##PACKAGE##
+ * @subpackage ##SUBPACKAGE##
+ * @author ##NAME## <##EMAIL##>
+ * @version SVN: $Id: Builder.php 7200 2010-02-21 09:37:37Z beberlei $
+ */
+abstract class PlugindvbNewsletterListSubscriber extends
BasedvbNewsletterListSubscriber
+{
+
+}
\ No newline at end of file
Added:
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListSubscriberTable.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListSubscriberTable.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListSubscriberTable.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,29 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+class PlugindvbNewsletterListSubscriberTable extends Doctrine_Table
+{
+
+}
\ No newline at end of file
Added:
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListTable.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListTable.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterListTable.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,32 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/**
+ * @author Davide Bellettini <[email protected]>
+ */
+class PlugindvbNewsletterListTable extends Doctrine_Table
+{
+
+}
\ No newline at end of file
Added:
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterSubscriber.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterSubscriber.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterSubscriber.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,39 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/**
+ * PlugindvbNewsletterSubscriber
+ *
+ * This class has been auto-generated by the Doctrine ORM Framework
+ *
+ * @package ##PACKAGE##
+ * @subpackage ##SUBPACKAGE##
+ * @author ##NAME## <##EMAIL##>
+ * @version SVN: $Id: Builder.php 7200 2010-02-21 09:37:37Z beberlei $
+ */
+abstract class PlugindvbNewsletterSubscriber extends
BasedvbNewsletterSubscriber
+{
+
+}
\ No newline at end of file
Added:
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterSubscriberTable.class.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterSubscriberTable.class.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/lib/model/doctrine/PlugindvbNewsletterSubscriberTable.class.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,29 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+class PlugindvbNewsletterSubscriberTable extends Doctrine_Table
+{
+
+}
\ No newline at end of file
Added:
plugins/dvbNewsletterPlugin/trunk/modules/dvbNewsletterSubscription/actions/dvbNewsletterSubscriptionsActions.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/modules/dvbNewsletterSubscription/actions/dvbNewsletterSubscriptionsActions.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/modules/dvbNewsletterSubscription/actions/dvbNewsletterSubscriptionsActions.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,29 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+class dvbNewsletterSubscriptionsActions extends
BaseDvbNewsleterSubscriptionsActions
+{
+
+}
\ No newline at end of file
Added:
plugins/dvbNewsletterPlugin/trunk/modules/dvbNewsletterSubscription/lib/BaseDvbNewsletterSubscriptionActions.php
===================================================================
---
plugins/dvbNewsletterPlugin/trunk/modules/dvbNewsletterSubscription/lib/BaseDvbNewsletterSubscriptionActions.php
(rev 0)
+++
plugins/dvbNewsletterPlugin/trunk/modules/dvbNewsletterSubscription/lib/BaseDvbNewsletterSubscriptionActions.php
2010-02-26 15:07:47 UTC (rev 28308)
@@ -0,0 +1,29 @@
+<?php
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010 Davide Bellettini <[email protected]>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+abstract class BaseDvbNewsleterSubscriptionsActions extends sfActions
+{
+
+}
\ No newline at end of file
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.