| | |
| | | <?php |
| | | |
| | | /* |
| | | /** |
| | | +-----------------------------------------------------------------------+ |
| | | | This file is part of the Roundcube Webmail client | |
| | | | Copyright (C) 2006-2013, The Roundcube Dev Team | |
| | |
| | | | Author: Thomas Bruederli <roundcube@gmail.com> | |
| | | +-----------------------------------------------------------------------+ |
| | | */ |
| | | |
| | | |
| | | /** |
| | | * Abstract skeleton of an address book/repository |
| | |
| | | public $page_size = 10; |
| | | public $sort_col = 'name'; |
| | | public $sort_order = 'ASC'; |
| | | public $coltypes = array('name' => array('limit'=>1), 'firstname' => array('limit'=>1), 'surname' => array('limit'=>1), 'email' => array('limit'=>1)); |
| | | public $date_cols = array(); |
| | | public $coltypes = array( |
| | | 'name' => array('limit'=>1), |
| | | 'firstname' => array('limit'=>1), |
| | | 'surname' => array('limit'=>1), |
| | | 'email' => array('limit'=>1) |
| | | ); |
| | | |
| | | protected $error; |
| | | |
| | |
| | | |
| | | return false; |
| | | } |
| | | |
| | | } |
| | | |