Flsupport_Tokens::get_person_object( $id )
Source Source
File: src/integrations/fluent-support/tokens/flsupport-tokens.php
protected function get_person_object( $id ) { $id = intval( $id ); if ( 0 === $id ) { return false; } return $this->fillin_wpuser_data( \FluentSupport\App\Models\Person::where( 'id', $id )->first() ); }
Expand full source code Collapse full source code View on Github