Author: rande
Date: 2010-01-12 00:32:00 +0100 (Tue, 12 Jan 2010)
New Revision: 26507
Added:
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/actions/
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/actions/actions.class.php
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/actions/components.class.php
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/config/
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/config/cache.yml
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/config/security.yml
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/lib/
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/lib/baseswExtraGlobalAdminActions.class.php
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/lib/baseswExtraGlobalAdminComponents.class.php
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/templates/
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/templates/dashboardSuccess.php
Modified:
plugins/swBaseApplicationPlugin/branches/sf1.3/layout/base_application.php
Log:
[swBaseApplicationPlugin] adding default index, add
include_javascripts|stylesheets to the default layout
Modified:
plugins/swBaseApplicationPlugin/branches/sf1.3/layout/base_application.php
===================================================================
--- plugins/swBaseApplicationPlugin/branches/sf1.3/layout/base_application.php
2010-01-11 23:31:34 UTC (rev 26506)
+++ plugins/swBaseApplicationPlugin/branches/sf1.3/layout/base_application.php
2010-01-11 23:32:00 UTC (rev 26507)
@@ -13,6 +13,9 @@
<?php include_metas() ?>
<?php include_title() ?>
+
+ <?php include_javascripts() ?>
+ <?php include_stylesheets() ?>
</head>
<body>
Added:
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/actions/actions.class.php
===================================================================
---
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/actions/actions.class.php
(rev 0)
+++
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/actions/actions.class.php
2010-01-11 23:32:00 UTC (rev 26507)
@@ -0,0 +1,24 @@
+<?php
+
+/*
+ * This file is part of the swBaseApplicationPlugin package.
+ * (c) 2008 Thomas Rabaix <[email protected]>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+include
sfConfig::get('sf_plugins_dir').'/swBaseApplicationPlugin/modules/swExtraGlobalAdmin/lib/baseswExtraGlobalAdminActions.class.php';
+
+/**
+ *
+ *
+ * @package swBaseApplicationPlugin
+ * @subpackage swExtraGlobalAdmin
+ * @author Thomas Rabaix <[email protected]>
+ * @version SVN: $Id: actions.class.php 87 2008-08-18 13:51:07Z rande $
+ */
+class swExtraGlobalAdminActions extends baseswExtraGlobalAdminActions
+{
+
+}
Added:
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/actions/components.class.php
===================================================================
---
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/actions/components.class.php
(rev 0)
+++
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/actions/components.class.php
2010-01-11 23:32:00 UTC (rev 26507)
@@ -0,0 +1,24 @@
+<?php
+
+/*
+ * This file is part of the swBaseApplicationPlugin package.
+ * (c) 2008 Thomas Rabaix <[email protected]>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+include
sfConfig::get('sf_plugins_dir').'/swBaseApplicationPlugin/modules/swExtraGlobalAdmin/lib/baseswExtraGlobalAdminComponents.class.php';
+
+/**
+ *
+ *
+ * @package swBaseApplicationPlugin
+ * @subpackage swExtraGlobalAdmin
+ * @author Thomas Rabaix <[email protected]>
+ * @version SVN: $Id: components.class.php 87 2008-08-18 13:51:07Z rande $
+ */
+class swExtraGlobalAdminComponents extends baseswExtraGlobalAdminComponents
+{
+
+}
\ No newline at end of file
Added:
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/config/cache.yml
===================================================================
---
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/config/cache.yml
(rev 0)
+++
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/config/cache.yml
2010-01-11 23:32:00 UTC (rev 26507)
@@ -0,0 +1,2 @@
+all:
+ enabled: false
\ No newline at end of file
Added:
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/config/security.yml
===================================================================
---
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/config/security.yml
(rev 0)
+++
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/config/security.yml
2010-01-11 23:32:00 UTC (rev 26507)
@@ -0,0 +1,2 @@
+all:
+ is_secure: true
\ No newline at end of file
Added:
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/lib/baseswExtraGlobalAdminActions.class.php
===================================================================
---
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/lib/baseswExtraGlobalAdminActions.class.php
(rev 0)
+++
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/lib/baseswExtraGlobalAdminActions.class.php
2010-01-11 23:32:00 UTC (rev 26507)
@@ -0,0 +1,29 @@
+<?php
+/*
+ * This file is part of the swBaseApplicationPlugin package.
+ * (c) 2008 Thomas Rabaix <[email protected]>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+/**
+ *
+ *
+ * @package swBaseApplicationPlugin
+ * @subpackage swExtraGlobalAdmin
+ * @author Thomas Rabaix <[email protected]>
+ * @version SVN: $Id: actions.class.php 87 2008-08-18 13:51:07Z rande $
+ */
+class baseswExtraGlobalAdminActions extends sfActions
+{
+ public function executeIndex()
+ {
+ $this->forward('swExtraGlobalAdmin', 'dashboard');
+ }
+
+ public function executeDashboard()
+ {
+
+ }
+}
Added:
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/lib/baseswExtraGlobalAdminComponents.class.php
===================================================================
---
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/lib/baseswExtraGlobalAdminComponents.class.php
(rev 0)
+++
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/lib/baseswExtraGlobalAdminComponents.class.php
2010-01-11 23:32:00 UTC (rev 26507)
@@ -0,0 +1,21 @@
+<?php
+/*
+ * This file is part of the swBaseApplicationPlugin package.
+ * (c) 2008 Thomas Rabaix <[email protected]>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+/**
+ *
+ *
+ * @package swBaseApplicationPlugin
+ * @subpackage swExtraGlobalAdmin
+ * @author Thomas Rabaix <[email protected]>
+ * @version SVN: $Id: components.class.php 87 2008-08-18 13:51:07Z rande $
+ */
+class baseswExtraGlobalAdminComponents extends sfComponents
+{
+
+}
Added:
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/templates/dashboardSuccess.php
===================================================================
---
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/templates/dashboardSuccess.php
(rev 0)
+++
plugins/swBaseApplicationPlugin/branches/sf1.3/modules/swExtraGlobalAdmin/templates/dashboardSuccess.php
2010-01-11 23:32:00 UTC (rev 26507)
@@ -0,0 +1,15 @@
+<?php
+/*
+ * This file is part of the swBaseApplicationPlugin package.
+ * (c) 2008 Thomas Rabaix <[email protected]>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+?>
+
+<?php
+ // @author Thomas Rabaix <[email protected]>
+ // @version SVN: $Id: dashboardSuccess.php 360 2009-12-23 18:52:12Z thomas
$
+?>
+
--
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.