?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/bricolagevincennes.fr/wp-content/plugins/caldera-forms/classes/api/



?? Go up: /home/webdevt/www/bricolagevincennes.fr/wp-content/plugins/caldera-forms/classes

?? Viewing: response_factory.php

<?php

class Caldera_Forms_API_Response_Factory {

    /**
     * Form not found error response
     *
     * @since unknown
     *
     * @return Caldera_Forms_API_Error
     */
	public static function error_form_not_found(){
		return new Caldera_Forms_API_Error( 'form-not-found', __( 'Form not found', 'caldera-forms' ) );
	}

    /**
     * Form not created error response
     *
     * @since 1.8.0
     *
     * @return Caldera_Forms_API_Error
     */
    public static function error_form_not_created(){
        return new Caldera_Forms_API_Error( 'form-not-created', __( 'Form not created', 'caldera-forms' ) );
    }

    /**
     * Entry not found error response
     *
     * @since unknown
     *
     * @return Caldera_Forms_API_Error
     */
    public static function error_entry_not_found(){
		  return new Caldera_Forms_API_Error( 'form-entry-not-found', __( 'Form entry not found', 'caldera-forms' ) );
	}

    /**
     * Entry data response
     *
     * @since unknown
     *
     * @param $data
     * @param null $total
     * @param bool $total_pages
     * @return Caldera_Forms_API_Response
     */
    public static function entry_data($data, $total = null, $total_pages = false ){
      if( null === $total ){
        $total = count( $data );
      }

      $response =  new Caldera_Forms_API_Response( $data, 200, array() );
      $response->set_total_header( $total );
      if ( is_numeric( $total_pages ) ) {
        $response->set_total_pages_header( $total_pages );
      }

      return $response;
    }


    /**
     * Response for general settings
     *
     * @since 1.7.3
     *
     * @param array $style_includes Style includes settings
     * @param bool $cdn_enable Is CDN enabled?
     * @param int $status Optional. Status code. Default is 200
     * @return Caldera_Forms_API_Response
     */
	public static function general_settings_response($style_includes, $cdn_enable, $status = 200 )
    {

        return new Caldera_Forms_API_Response( [
            'styleIncludes' => $style_includes,
            'cdnEnable' => $cdn_enable
        ], $status, array() );

    }

}


??

??