Author: sevein
Date: Sun Oct 10 08:44:16 2010
New Revision: 8041
Log:
Add assets dinamically (actually, this is ignored, but it should be like this).
Added:
trunk/lib/QubitUpdateCheck.class.php (contents, props changed)
Modified:
trunk/apps/qubit/modules/default/actions/updateCheckComponent.class.php
Modified:
trunk/apps/qubit/modules/default/actions/updateCheckComponent.class.php
==============================================================================
--- trunk/apps/qubit/modules/default/actions/updateCheckComponent.class.php
Sun Oct 10 08:42:55 2010 (r8040)
+++ trunk/apps/qubit/modules/default/actions/updateCheckComponent.class.php
Sun Oct 10 08:44:16 2010 (r8041)
@@ -59,7 +59,7 @@
if (($request->getCookie('has_js')))
{
- // TODO QubitUpdateCheck::addAssets($this->response);
+ QubitUpdateCheck::addAssets($this->response);
}
else
{
Added: trunk/lib/QubitUpdateCheck.class.php
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ trunk/lib/QubitUpdateCheck.class.php Sun Oct 10 08:44:16 2010
(r8041)
@@ -0,0 +1,27 @@
+<?php
+
+/*
+ * This file is part of Qubit Toolkit.
+ *
+ * Qubit Toolkit is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Qubit Toolkit is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Qubit Toolkit. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+class QubitUpdateCheck
+{
+ public static function addAssets(sfWebResponse $response)
+ {
+ $response->addJavaScript('/vendor/yui/cookie/cookie-min');
+ $response->addJavaScript('updateCheck');
+ }
+}
--
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" 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/qubit-commits?hl=en.