Changeset 687610
- Timestamp:
- 03/26/2013 03:59:00 PM (13 years ago)
- Location:
- simple-photos-contest/trunk
- Files:
-
- 1 deleted
- 5 edited
-
. (modified) (1 prop)
-
README.md (deleted)
-
controlers/SimplePhotosContest.php (modified) (1 diff)
-
controlers/SimplePhotosContestAdmin.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
simple-photos-contest.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simple-photos-contest/trunk
-
Property
svn:ignore
set to
.gitignore
-
Property
svn:ignore
set to
-
simple-photos-contest/trunk/controlers/SimplePhotosContest.php
r683153 r687610 33 33 const DBTABLE_PREFIX = 'spc'; 34 34 const REQUIRE_VERSION_WP = '3.5'; 35 const REQUIRE_VERSION_PHP = '5. 1.2';35 const REQUIRE_VERSION_PHP = '5.3.3'; 36 36 const VERSION = '1.0'; 37 37 const DBVERSION = '1.0'; -
simple-photos-contest/trunk/controlers/SimplePhotosContestAdmin.php
r683153 r687610 58 58 global $wp_version; 59 59 60 if (version_compare(PHP_VERSION, '5.3.3', '<')) {60 if (version_compare(PHP_VERSION, self::REQUIRE_VERSION_PHP, '<')) { 61 61 wp_die('Need Php > ' . self::REQUIRE_VERSION_PHP); 62 62 } -
simple-photos-contest/trunk/readme.txt
r684076 r687610 36 36 == Installation == 37 37 38 Requirements: 39 * Php >= 5.3.3 40 * Wordpress >= 3.5 41 38 42 1. Upload `simple-photos-contest` directory to the `/wp-content/plugins/` directory 39 1. Activate the plugin through the 'Plugins' menu in WordPress40 1. Place the code `[SimplePhotosContest]` in your page43 2. Activate the plugin through the 'Plugins' menu in WordPress 44 3. Place the code `[SimplePhotosContest]` in your page 41 45 42 46 == Screenshots == -
simple-photos-contest/trunk/simple-photos-contest.php
r683153 r687610 29 29 30 30 define('SIMPLE_PHOTOS_CONTEST', true); 31 require_once( __DIR__ . '/controlers/SimplePhotosContest.php'); 31 32 // FIXME: document why PHP version >= 5.3.3 33 if (version_compare(PHP_VERSION, '5.3.3', '<')) { 34 wp_die('Need Php > ' . self::REQUIRE_VERSION_PHP); 35 } 36 37 require_once( __DIR__ . '/controlers/SimplePhotosContest.php'); 32 38 33 39 global $gSPC;
Note: See TracChangeset
for help on using the changeset viewer.