_is_routing_initializing; } /** * Sets state for routing initialization phase. * * @param bool $status State for initializing phase. */ public function set_routing_initialization( $status ) { $this->_is_routing_initializing = $status; } /** * Returns whether html render strategy should append content in the_content * filter hook. * * @return bool */ public function append_content() { return $this->_append_content; } /** * Sets state for content appending in html renderer the_content hook. * See Ai1ec_Render_Strategy_Html::append_content() * * @param bool $status Whether to append content or not. */ public function set_append_content( $status ) { $this->_append_content = $status; } }