JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
allow sha1 trick for svgs in stylus
[wfpl-cms.git] / config.php
index 1dc9d0d..e60cbd7 100644 (file)
@@ -1,21 +1,31 @@
 <?php
 
+# This file should be run automatically by wfpl_main.php
+
 # Settings
 define('WFPL_DB', 'fixme');
 define('WFPL_DB_USER', 'fixme');
 define('WFPL_DB_PASS', 'fixme');
-# CMS login passwords are stored in the database. See admin_admins.php
+# CMS login passwords are stored in the database. See admin_users.php
 date_default_timezone_set('America/New_York');
 
+# If you change these, update style.styl too
+define('WFPL_IMAGE_WIDTH_FULL',  900);
+define('WFPL_IMAGE_WIDTH_SMALL', 336); # this is "sidebar_width" in style.styl
+define('WFPL_IMAGE_WIDTH_THUMB',  70);
+$GLOBALS['wfpl_image_widths'] = array(
+       WFPL_IMAGE_WIDTH_FULL,
+       WFPL_IMAGE_WIDTH_SMALL,
+       WFPL_IMAGE_WIDTH_THUMB
+);
+
 # Enable features, auto-includes
-require_once(__DIR__.'/'.'inc/wfpl/format.php');
-require_once(__DIR__.'/'.'inc/wfpl/db.php');
-require_once(__DIR__.'/'.'inc/wfpl/session_messages.php');
-require_once(__DIR__.'/'.'inc/cms.php');
+require_once(DOCROOT . 'inc/wfpl/format.php');
+require_once(DOCROOT . 'inc/wfpl/db.php');
+require_once(DOCROOT . 'inc/wfpl/session_messages.php');
+require_once(DOCROOT . 'inc/session_auth.php');
+require_once(DOCROOT . 'inc/cms.php');
+require_once(DOCROOT . 'inc/misc.php');
 
 # Connect to the database
 db_connect(WFPL_DB, WFPL_DB_USER, WFPL_DB_PASS);
-
-# Load the requested page (php and/or html)
-require_once(__DIR__.'/'.'inc/wfpl/main.php');
-wfpl_main();