| | 461 | |
| | 462 | public function getDgsUllTableToolList() |
| | 463 | { |
| | 464 | $s = new ullDomGridSelector('table.list_table > tbody', 'tr', 'td', array(), array()); |
| | 465 | |
| | 466 | return $s; |
| | 467 | } |
| | 468 | |
| | 469 | public function getDgsUllTableToolUllLocationList() |
| | 470 | { |
| | 471 | $s = new ullDomGridSelector('table.list_table > tbody', 'tr', 'td', array(), |
| | 472 | array( |
| | 473 | 'edit_delete', |
| | 474 | 'name', |
| | 475 | 'short_name', |
| | 476 | 'city', |
| | 477 | 'country' |
| | 478 | ) |
| | 479 | ); |
| | 480 | |
| | 481 | return $s; |
| | 482 | } |
| | 483 | |
| | 484 | public function getDgsUllTableToolUserStatusList() |
| | 485 | { |
| | 486 | $s = new ullDomGridSelector('table.list_table > tbody', 'tr', 'td', array(), |
| | 487 | array( |
| | 488 | 'edit_delete', |
| | 489 | 'name_translation_en', |
| | 490 | 'is_active', |
| | 491 | 'is_absent' |
| | 492 | ) |
| | 493 | ); |
| | 494 | |
| | 495 | return $s; |
| | 496 | } |