Changeset 432:f00f0ec519b8
- Timestamp:
- 06/28/11 12:35:30 (14 years ago)
- Branch:
- formfilters
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default.css
r431 r432 943 943 border-collapse: collapse; 944 944 margin: 0 0 1em 0; 945 } 946 table caption { 947 position: absolute; 948 left: -9999px; 945 949 } 946 950 tr.line:hover { -
inc/admin/lib.pager.php
r431 r432 219 219 $html_block = 220 220 '<table class="maximal clear">'. 221 $this->getCaption($page). 221 222 '<thead><tr>'; 222 223 … … 269 270 } 270 271 272 private function getCaption($page) 273 { 274 $caption = $this->getDefaultCaption(); 275 276 if (!empty($caption)) { 277 $caption = sprintf( 278 '<caption>%s - %s</caption>', 279 $caption,sprintf(__('Page %s'),$page) 280 ); 281 } 282 283 return $caption; 284 } 285 286 protected function getDefaultCaption() 287 { 288 return; 289 } 290 271 291 protected function getDefaultLine() 272 292 { … … 277 297 class adminPostList extends adminGenericList 278 298 { 299 protected function getDefaultCaption() 300 { 301 return __('Entries list'); 302 } 303 279 304 protected function getDefaultLine() 280 305 { … … 385 410 class adminCommentList extends adminGenericList 386 411 { 412 protected function getDefaultCaption() 413 { 414 return __('Comments list'); 415 } 416 387 417 protected function getDefaultLine() 388 418 { … … 466 496 class adminUserList extends adminGenericList 467 497 { 498 protected function getDefaultCaption() 499 { 500 return __('Users list'); 501 } 502 468 503 protected function getUserName() 469 504 {
Note: See TracChangeset
for help on using the changeset viewer.