Changeset 20
- Timestamp:
- 09/21/07 16:45:30 (6 years ago)
- Files:
-
- 1 added
- 1 removed
- 4 modified
-
googleanalytics/files/lib/system/event/listener/AbstractPageGoogleAnalyticsListener.class.php (modified) (2 diffs)
-
googleanalytics/options.xml (modified) (1 diff)
-
googleanalytics/package.xml (modified) (3 diffs)
-
googleanalytics/requirements/de.easy-coding.wbb.footscript (added)
-
googleanalytics/requirements/de.easy-coding.wcf.headscript (deleted)
-
make_package.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
googleanalytics/files/lib/system/event/listener/AbstractPageGoogleAnalyticsListener.class.php
r14 r20 7 7 * 8 8 * @author Torben Brodt 9 * @package de.easy-coding.w cf.googleanalytics9 * @package de.easy-coding.wbb.googleanalytics 10 10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php> 11 11 */ … … 17 17 public function execute($eventObj, $className, $eventName) { 18 18 if(defined('GOOGLEANALYTICS_KEY') && GOOGLEANALYTICS_KEY != "UA-xxxx-x") { 19 WBBCore::getTPL()->append('special Styles', WBBCore::getTPL()->fetch('googleAnalytics'));19 WBBCore::getTPL()->append('specialFooters', WBBCore::getTPL()->fetch('googleAnalytics')); 20 20 } 21 21 } -
googleanalytics/options.xml
r14 r20 5 5 <options> 6 6 <option name="googleanalytics_key"> 7 <categoryname> headscript.plugins</categoryname>7 <categoryname>footscript.plugins</categoryname> 8 8 <optiontype>text</optiontype> 9 9 <defaultvalue><![CDATA[UA-xxxx-x]]></defaultvalue> -
googleanalytics/package.xml
r14 r20 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <!DOCTYPE package SYSTEM "http://www.woltlab.com/DTDs/package.dtd"> 3 <package name="de.easy-coding.w cf.googleanalytics">3 <package name="de.easy-coding.wbb.googleanalytics"> 4 4 <packageinformation> 5 5 <packagename>Google Analytics</packagename> … … 8 8 <version>1.0.0</version> 9 9 <date>DATE</date> 10 <plugin>de.easy-coding.w cf.headscript</plugin>10 <plugin>de.easy-coding.wbb.footscript</plugin> 11 11 </packageinformation> 12 12 … … 17 17 18 18 <requiredpackages> 19 <requiredpackage minversion="1.0.0" file="requirements/de.easy-coding.w cf.headscript.tar.gz">de.easy-coding.wcf.headscript</requiredpackage>19 <requiredpackage minversion="1.0.0" file="requirements/de.easy-coding.wbb.footscript.tar.gz">de.easy-coding.wbb.footscript</requiredpackage> 20 20 </requiredpackages> 21 21 -
make_package.sh
r17 r20 111 111 112 112 if [ -f "LICENSE" ]; then 113 TAR_STRING=" LICENSE"113 TAR_STRING="$TAR_STRING LICENSE" 114 114 fi 115 115
