template = $template; $this->search_string = $search_string; } /** * Get twig model. * * @return array */ public function get_model() { $model = array( 'strings' => array( 'search_for' => __( 'Search for', 'wpml-translation-management' ), ), 'search_string' => $this->search_string, ); return $model; } /** * Render model via twig. * * @return mixed */ public function render() { return $this->template->show( $this->get_model(), self::TM_MCS_SEARCH_TEMPLATE ); } }