PHP Classes

File: pages/p_options.php

Recommend this page to a friend!
  Classes of Javier AP   Pergamus Publication Manager   pages/p_options.php   Download  
File: pages/p_options.php
Role: Auxiliary script
Content type: text/plain
Description: User interface options
Class: Pergamus Publication Manager
Web based manager for scientific publications
Author: By
Last change: Directory path added to filename
Date: 19 years ago
Size: 1,256 bytes
 

Contents

Class file image Download
<table width="100%" border="0" cellspacing="5" cellpadding="0">
  <tr>
    <td><img src="../img/icon.gif" border="0"> <a href="p_userslist.php" target="_self" > Users list </a></td>
  </tr>
  <tr>
    <td colspan="2"><img src="../img/icon.gif" border="0"> <a href="p_sign_in.php" target="_self" > Add new users </a></td>
  </tr>
  <tr>
    <td><img src="../img/icon.gif" border="0"> <a href="p_publications.php?mode=edit" target="_self" > Remove/Modify publications </a> </td>
  </tr>
  <tr>
    <td colspan="2"><hr noshade></td>
  </tr>
  <tr>
    <td><img src="../img/icon.gif" border="0"> <strong> Add publications:</strong><br></td>
    <td ><strong>BibTex type:</strong></td>
  </tr>
  <?php
     $type_list
= array('InProceedings','Article','TechReport','PhDThesis','Book','InBook');
     foreach(
$type_list as $pub_type) {
         print(
"<tr>\n");
        print(
"<td bgcolor=\"#f0f0f0\"><span class=\"tabbed\"><img src=\"../img/icon_minipost.gif\" border=\"0\"> <a href=\"p_pubform.php?pub_type=$pub_type\"> ".get_section_title($pub_type)." </a></span></td>\n");
        print(
"<td bgcolor=\"#f0f0f0\"><a href=\"p_pubform.php?pub_type=$pub_type\">(".ucfirst($pub_type).")</a></td>\n");
        print(
"</tr>\n");
     }
 
?>
</table>
<p>
</p>