public function AlphaPagination::__sleep in Views Alpha Pagination 7.2
File
- src/
AlphaPagination.php, line 23
Class
- AlphaPagination
- A base views handler for alpha pagination.
Code
public function __sleep() {
$this->_handler = implode(':', [
$this->handler->view->name,
$this->handler->view->current_display,
$this->handler->handler_type,
$this->handler->real_field ?: $this->handler->field,
]);
return [
'_handler',
];
}