singpolyma / wrinks

Code from wrinks.ning.com

wrinks / contentManager.php
100755 12 lines (11 sloc) 0.325 kb
1
2
3
4
5
6
7
8
9
10
11
12
<?php
require_once 'XNC/ContentManager.php';
 
if (XN_Profile::current()->isOwner()) {
  $mgr = new XNC_ContentManager();
  $mgr->go();
} else {
  echo '<h1>Whoops!</h1>';
  echo '<p>We\'re sorry, only the owner of this application can access the Content Manager. If that\'s
you, please sign in.</p>';
}
?>