Changeset 1608038
- Timestamp:
- 03/05/2017 07:14:10 AM (9 years ago)
- Location:
- wp-xapi-lrs/trunk
- Files:
-
- 2 edited
-
ext/minixapi (modified) (1 prop)
-
wp-xapi-lrs.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-xapi-lrs/trunk/ext/minixapi
-
Property
svn:ignore
set to
submodule
-
Property
svn:ignore
set to
-
wp-xapi-lrs/trunk/wp-xapi-lrs.php
r1582655 r1608038 1 1 <?php 2 3 /* 4 Plugin Name: xAPI LRS 5 Plugin URI: http://github.com/tunapanda/wp-xapi-lrs 6 GitHub Plugin URI: http://github.com/tunapanda/wp-xapi-lrs 7 Description: Enables your WordPress site to act as an xAPI Learning Record Store. 8 Version: 0.0.3 9 */ 10 11 if (!defined("PHP_VERSION_ID") || PHP_VERSION_ID<50500) { 12 trigger_error('Your PHP version is too old, you need at least 5.5.0, you have '.phpversion(),E_USER_ERROR); 13 return; 14 } 2 15 3 16 require_once __DIR__."/ext/minixapi/MiniXapi.php"; … … 7 20 use xapilrs\WpUtil; 8 21 use xapilrs\Template; 9 10 /*11 Plugin Name: xAPI LRS12 Plugin URI: http://github.com/tunapanda/wp-xapi-lrs13 GitHub Plugin URI: http://github.com/tunapanda/wp-xapi-lrs14 Description: Enables your WordPress site to act as an xAPI Learning Record Store.15 Version: 0.0.216 */17 22 18 23 function xapilrs_activate() {
Note: See TracChangeset
for help on using the changeset viewer.