Changeset 10631
- Timestamp:
- May 26, 2009, 10:29:59 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/admin/activityTrac.php ¶
r10623 r10631 6 6 require_once(BX_DIRECTORY_PATH_INC . 'languages.inc.php'); 7 7 require_once(BX_DIRECTORY_PATH_INC . 'profiles.inc.php'); 8 9 $_page['css_name'] = 'activityTrac.css';10 8 11 9 $logged['admin'] = member_auth( 1, true, true ); -
TabularUnified trunk/admin/quotes.php ¶
r10620 r10631 174 174 echo get_checkbox_menu() . "</form>"; 175 175 } 176 177 ContentBlockFoot();178 176 } 179 177 -
TabularUnified trunk/inc/admin_design.inc.php ¶
r10629 r10631 112 112 } 113 113 114 function TopCodeAdmin( $extraCodeInBody = '' ) 115 { 116 return 'Need to redevelop current "TopCodeAdmin" call'; 114 function TopCodeAdmin( $extraCodeInBody = '' ) { 115 echo 'Need to redevelop current "TopCodeAdmin" call'; 117 116 } 118 117 … … 125 124 * Put top code for the admin section 126 125 **/ 127 function BottomCode() 128 { 129 return 'Need to redevelop current "BottomCode" call'; 126 function BottomCode() { 127 echo 'Need to redevelop current "BottomCode" call'; 130 128 exit; 131 129 } 132 130 133 function ContentBlockHead( $title, $attention = 0, $id = '') 134 { 135 $id = $id ? "id=\"{$id}\"" : ''; 136 137 ?> 138 <div class="admin_block" <?=$id?>> 139 <div class="block_head"><?=$title?></div> 140 <div class="block_cont"> 141 <? 131 function ContentBlockHead( $title, $attention = 0, $id = '') { 132 echo 'Need to redevelop current "ContentBlockHead" call'; 142 133 } 143 134 144 function ContentBlockFoot() 145 { 146 ?> 147 </div> 148 </div> 149 <? 135 function ContentBlockFoot() { 136 echo 'Need to redevelop current "ContentBlockFoot" call'; 150 137 } 151 138
Note: See TracChangeset
for help on using the changeset viewer.