/** * Everest Forms Message Functions * * Functions for error/message handling and display. * * @package EverestForms/Functions * @version 1.0.0 */ defined( 'ABSPATH' ) || exit; /** * Get the count of notices added, either for all notices (default) or for one. * particular notice type specified by $notice_type. * * @since 1.0.0 * @param string $notice_type Optional. The name of the notice type - either error, success or notice. * @return int */ function evf_notice_count( $notice_type = '' ) { if ( ! did_action( 'everest_forms_init' ) ) { evf_doing_it_wrong( __FUNCTION__, __( 'This function should not be called before everest_forms_init.', 'everest-forms' ), '1.0' ); return; } $notice_count = 0; $all_notices = evf()->session->get( 'evf_notices', array() ); if ( isset( $all_notices[ $notice_type ] ) ) { $notice_count = count( $all_notices[ $notice_type ] ); } elseif ( empty( $notice_type ) ) { foreach ( $all_notices as $notices ) { $notice_count += count( $notices ); } } return $notice_count; } /** * Check if a notice has already been added. * * @since 1.0.0 * @param string $message The text to display in the notice. * @param string $notice_type Optional. The name of the notice type - either error, success or notice. * @return bool */ function evf_has_notice( $message, $notice_type = 'success' ) { if ( ! did_action( 'everest_forms_init' ) ) { evf_doing_it_wrong( __FUNCTION__, __( 'This function should not be called before everest_forms_init.', 'everest-forms' ), '1.0' ); return false; } $notices = evf()->session->get( 'evf_notices', array() ); $notices = isset( $notices[ $notice_type ] ) ? $notices[ $notice_type ] : array(); return array_search( $message, $notices, true ) !== false; } /** * Add and store a notice. * * @since 1.0.0 * @param string $message The text to display in the notice. * @param string $notice_type Optional. The name of the notice type - either error, success or notice. */ function evf_add_notice( $message, $notice_type = 'success' ) { if ( ! did_action( 'everest_forms_init' ) ) { evf_doing_it_wrong( __FUNCTION__, __( 'This function should not be called before everest_forms_init.', 'everest-forms' ), '1.0' ); return; } if ( evf_is_amp() ) { return; } $notices = evf()->session->get( 'evf_notices', array() ); // Backward compatibility. if ( 'success' === $notice_type ) { $message = apply_filters( 'everest_forms_add_message', $message ); } $notices[ $notice_type ][] = apply_filters( 'everest_forms_add_' . $notice_type, $message ); evf()->session->set( 'evf_notices', $notices ); } /** * Set all notices at once. * * @since 1.0.0 * @param mixed $notices Array of notices. */ function evf_set_notices( $notices ) { if ( ! did_action( 'everest_forms_init' ) ) { evf_doing_it_wrong( __FUNCTION__, __( 'This function should not be called before everest_forms_init.', 'everest-forms' ), '1.0' ); return; } evf()->session->set( 'evf_notices', $notices ); } /** * Unset all notices. * * @since 1.0.0 */ function evf_clear_notices() { if ( ! did_action( 'everest_forms_init' ) ) { evf_doing_it_wrong( __FUNCTION__, __( 'This function should not be called before everest_forms_init.', 'everest-forms' ), '1.0' ); return; } evf()->session->set( 'evf_notices', null ); } /** * Prints messages and errors which are stored in the session, then clears them. * * @since 1.0.0 * * @param array $form_data Prepared form settings. */ function evf_print_notices( $form_data = array() ) { if ( ! did_action( 'everest_forms_init' ) ) { evf_doing_it_wrong( __FUNCTION__, __( 'This function should not be called before everest_forms_init.', 'everest-forms' ), '1.0' ); return; } $form_id = isset( $form_data['id'] ) ? absint( $form_data['id'] ) : 0; $all_notices = evf()->session->get( 'evf_notices', array() ); $notice_types = apply_filters( 'everest_forms_notice_types', array( 'error', 'success', 'notice' ) ); // Skips notice print if it isn't the right form. if ( isset( $_REQUEST['everest_forms']['id'] ) && ( (int) $form_id !== (int) $_REQUEST['everest_forms']['id'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification return; } foreach ( $notice_types as $notice_type ) { if ( evf_notice_count( $notice_type ) > 0 ) { foreach ( $all_notices[ $notice_type ] as $key => $message ) { $all_notices[ $notice_type ][ $key ] = evf_string_translation( $form_id, 'notice_message_' . $notice_type, $message ); } evf_get_template( "notices/{$notice_type}.php", array( 'messages' => array_filter( $all_notices[ $notice_type ] ), ) ); } } evf_clear_notices(); } add_action( 'everest_forms_display_fields_before', 'evf_print_notices', 10 ); /** * Print a single notice immediately. * * @since 1.0.0 * @param string $message The text to display in the notice. * @param string $notice_type Optional. The name of the notice type - either error, success or notice. */ function evf_print_notice( $message, $notice_type = 'success' ) { if ( 'success' === $notice_type ) { $message = apply_filters( 'everest_forms_add_message', $message ); } evf_get_template( "notices/{$notice_type}.php", array( 'messages' => array( apply_filters( 'everest_forms_add_' . $notice_type, $message ) ), ) ); } /** * Returns all queued notices, optionally filtered by a notice type. * * @since 1.0.0 * @param string $notice_type Optional. The name of the notice type - either error, success or notice. * @return array|mixed */ function evf_get_notices( $notice_type = '' ) { if ( ! did_action( 'everest_forms_init' ) ) { evf_doing_it_wrong( __FUNCTION__, __( 'This function should not be called before everest_forms_init.', 'everest-forms' ), '1.0' ); return; } $all_notices = evf()->session->get( 'evf_notices', array() ); if ( empty( $notice_type ) ) { $notices = $all_notices; } elseif ( isset( $all_notices[ $notice_type ] ) ) { $notices = $all_notices[ $notice_type ]; } else { $notices = array(); } return $notices; } /** * Add notices for WP Errors. * * @param WP_Error $errors Errors. */ function evf_add_wp_error_notices( $errors ) { if ( is_wp_error( $errors ) && $errors->get_error_messages() ) { foreach ( $errors->get_error_messages() as $error ) { evf_add_notice( $error, 'error' ); } } } .wc-block-components-payment-method-label--with-icon { display: inline-block; vertical-align: middle; > img, > svg { vertical-align: middle; margin: -2px 4px 0 0; } } .is-mobile, .is-small { .wc-block-components-payment-method-label--with-icon { > img, > svg { display: none; } } } Faith Clinic – Faith Clinic

Faith Clinic

Faith Clinic

"Providing focused and quality care to children with trust and care."
Taking care of children's health is the most important task for parents. Faith Clinic helps with this by offering comprehensive paediatric care from birth to adulthood. Special attention is paid to the teenage period, when health plays a key role in shaping the future. Modern techniques and an individual approach make child care of the highest possible quality. Sometimes in their free time, adults are looking for ways to relax and have fun. One popular option is online casino platforms where you can have fun. The platforms explored at https://cheats-tricks.de/provide an opportunity to not only have fun, but also to try your luck. This is a great source for those looking for tried and trusted options. When planning for your child's health care, it is important to remember that recreation and entertainment also have a significant place in life. Faith Clinic always remains a trusted partner when it comes to children's health, and the variety of recreational platforms available will help parents rejuvenate. This balance between responsibility and enjoyment promotes family harmony and mutual understanding.

Welcome To Faith Clinic

Faith, derived from Latin (fides) and Old French (feid) words which means confidence or trust in a person, thing, or concept. At its most general ‘faith’ means much the same as ‘trust’. The importance of trust in patient-physician relationships is very important and is the foundation of clinical care.

Faith clinic was started in 2009 at Sector -5 Gurgram with the objective of providing quality care to patients with trust, empathy and honesty .Dr Sunita Manchanda, Founder of Faith Clinic is an experienced professional who is known for her kind, caring and compassionate approach to every young patient . Paediatric support staff here is highly skilled and very much dedicated to childrens’ need and perform the most complex nursing tasks with a warmth and easy skill that puts children and adolescents at ease.

We believe in our mission of providing best , comprehensive and quality care for every child from birth to adulthood including adolescent age..

Meet the Doctor

DR SUNITA MANCHANDA

(M.B.B.S, D.C.H, P.G.DAP , M.A Counselling )

Consultant Paediatrician and Adolescent Specialist.

Formerly :

  • Mamta Hospital,Gurgaon
  • Poole Hospital, Dorset ( U.K)
  • Ormskirk District General Hospital,Lancashire United Kingdom (U.K)
  • B.J.R.M Hospital, New Delhi
  • Saroj Hospital and Heart Institute, New Delhi
  •  Pt B.D.S,P.G.I.M.S, Rohtak

Why Choose Faith Clinic

Health issues in children can be quite upsetting and stressful for the parents and the family. Faith clinic provides highly personalised and holistic care in comfortable, calm and caring environment where experienced doctor and support staff take  time to listen and build a relationship, resulting in expert care focused for you and your child . Free onsite parking makes it easily accessible.