Changeset 105
- Timestamp:
- 10/26/05 16:33:37 (3 years ago)
- Files:
-
- tags/0.6RC/src/lyceum/portal.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tags/0.6RC/src/lyceum/portal.php
r104 r105 6 6 get_currentuserinfo(); 7 7 8 echo "welcome to Lyceum $user_identity !<br/><br/>"; 8 echo "<h1>Welcome to Lyceum $user_identity!</h1>";?> 9 <p>Thank you for helping to test Lyceum. Click <em>Register</em> to sign up for a username and blog. This will generate a password which will be emailed to you. After logging in, you can create posts, adjust blog settings, comment on your blog and other blogs. You can even create mulitple users/blogs and cross post between them.</p> 10 <?php 11 echo '<a href="wp-register.php">Register</a><br/>'; 12 echo '<a href="wp-login.php">Log In</a><br/>'; 13 echo '<a href="wp-login.php?action=logout">Log Out</a>'; 14 9 15 10 16 $myblogs = get_userblogs(); 11 17 12 echo "<hr/> MY BLOGS<br/>";18 echo "<hr/><h2>My Blogs</h2>"; 13 19 if ($myblogs) 14 20 foreach ($myblogs as $b) … … 16 22 else 17 23 echo "You do not have permissions on any blogs"; 18 19 20 echo '<hr/><a href="wp-register.php">click here to register for a username. this will automatically create a blog for you</a><br/><br/>';21 echo '<a href="wp-login.php">click here to log in</a><br/><br/>';22 echo '<a href="wp-login.php?action=logout">click here to log out</a><br/><br/>';23 24 24 25 $blogs = $wpdb->get_results(" … … 30 31 "); 31 32 32 echo "<hr/> ALL BLOGS<br/>";33 echo "<hr/><h2>All Blogs</h2>"; 33 34 if ($blogs) 34 35 foreach ($blogs as $b)
