bp_get_the_profile_field_errors_action(

bp_get_the_profile_field_errors_action(

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: buddypress.14.5.2

do_action('bp_get_the_profile_field_errors_action(') is found 14 times:

  • /bp-xprofile/bp-xprofile-template.php line 785
     * In the registration templates, signup errors are pulled from the global
     * object and rendered at actions that look like 'bp_field_12_errors'. This
     * function allows the action name to be easily concatenated and called in the
     * following fashion:
     *   do_action( bp_get_the_profile_field_errors_action() );
     *
     * @since 1.8.0
     *
     * @global object $field Current profile field.
     *
     * @return string The _errors action name corresponding to this profile field.
    
  • /bp-xprofile/classes/class-bp-xprofile-field-type-checkbox-acceptance.php line 115
    		</legend>
    
    		<?php
    		/** This action is documented in bp-xprofile/bp-xprofile-classes */
    		do_action( bp_get_the_profile_field_errors_action() );
    
    		$r&#91;'user_id'&#93; = $user_id;
    		bp_the_profile_field_options( $r );
    		?>
    
    		<?php if ( bp_get_the_profile_field_description() ) : ?>
    
  • /bp-xprofile/classes/class-bp-xprofile-field-type-checkbox.php line 81

    $user_id,
    ) ); ?>

  • /bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php line 115

    * your needed target ID.
    *
    * @since 1.8.0
    */
    do_action( bp_get_the_profile_field_errors_action() ); ?>

    Share this:

  • /bp-xprofile/classes/class-bp-xprofile-field-type-multiselectbox.php line 87
     
    		<?php
    
    		/** This action is documented in bp-xprofile/bp-xprofile-classes */
    		do_action( bp_get_the_profile_field_errors_action() ); ?>
    
    		<select <?php $this->output_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    			<?php bp_the_profile_field_options( array(
    				'user_id' => $user_id,
    			) ); ?>
    		</select>
    
  • /bp-xprofile/classes/class-bp-xprofile-field-type-number.php line 79
     
    		<?php
    
    		/** This action is documented in bp-xprofile/bp-xprofile-classes */
    		do_action( bp_get_the_profile_field_errors_action() ); ?>
    
    		<input <?php $this->output_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    
    		<?php if ( bp_get_the_profile_field_description() ) : ?>
    			<p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
    		<?php endif; ?>
    
  • /bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php line 79
     
    			<?php
    
    			/** This action is documented in bp-xprofile/bp-xprofile-classes */
    			do_action( bp_get_the_profile_field_errors_action() ); ?>
    
    			<?php bp_the_profile_field_options( array( 'user_id' => $user_id ) );
    
    			if ( ! bp_get_the_profile_field_is_required() ) :
    
    				$clear = 'clear';
    
  • /bp-xprofile/classes/class-bp-xprofile-field-type-selectbox.php line 75
     
    		<?php
    
    		/** This action is documented in bp-xprofile/bp-xprofile-classes */
    		do_action( bp_get_the_profile_field_errors_action() ); ?>
    
    		<select <?php $this->output_edit_field_html_elements( $raw_properties ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    			<?php bp_the_profile_field_options( array( 'user_id' => $user_id ) ); ?>
    		</select>
    
    		<?php if ( bp_get_the_profile_field_description() ) : ?>
    
  • /bp-xprofile/classes/class-bp-xprofile-field-type-telephone.php line 80
     
    		<?php
    
    		/** This action is documented in bp-xprofile/bp-xprofile-classes */
    		do_action( bp_get_the_profile_field_errors_action() ); ?>
    
    		<input <?php $this->output_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    
    		<?php if ( bp_get_the_profile_field_description() ) : ?>
    			<p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
    		<?php endif; ?>
    
  • /bp-xprofile/classes/class-bp-xprofile-field-type-textarea.php line 73
     
    		<?php
    
    		/** This action is documented in bp-xprofile/bp-xprofile-classes */
    		do_action( bp_get_the_profile_field_errors_action() );
    
    		if ( ! $richtext_enabled ) {
    			$r = bp_parse_args(
    				$raw_properties,
    				array(
    					'cols' => 40,
    
  • /bp-xprofile/classes/class-bp-xprofile-field-type-textbox.php line 78
     
    		<?php
    
    		/** This action is documented in bp-xprofile/bp-xprofile-classes */
    		do_action( bp_get_the_profile_field_errors_action() ); ?>
    
    		<input <?php $this->output_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    
    		<?php if ( bp_get_the_profile_field_description() ) : ?>
    			<p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
    		<?php endif; ?>
    
  • /bp-xprofile/classes/class-bp-xprofile-field-type-url.php line 90
     
    		<?php
    
    		/** This action is documented in bp-xprofile/bp-xprofile-classes */
    		do_action( bp_get_the_profile_field_errors_action() ); ?>
    
    		<input <?php $this->output_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    
    		<?php if ( bp_get_the_profile_field_description() ) : ?>
    			<p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
    		<?php endif; ?>
    
  • /bp-xprofile/classes/class-bp-xprofile-field-type-wordpress-biography.php line 112
    		</label>
    
    		<?php
    		/** This action is documented in bp-xprofile/bp-xprofile-classes */
    		do_action( bp_get_the_profile_field_errors_action() );
    
    		$r = bp_parse_args(
    			$raw_properties,
    			array(
    				'cols' => 40,
    				'rows' => 5,
    
  • /bp-xprofile/classes/class-bp-xprofile-field-type-wordpress-textbox.php line 180
     
    		<?php
    
    		/** This action is documented in bp-xprofile/bp-xprofile-classes */
    		do_action( bp_get_the_profile_field_errors_action() ); ?>
    
    		<input <?php $this->output_edit_field_html_elements( $r ); ?> aria-labelledby="<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    
    		<?php if ( bp_get_the_profile_field_description() ) : ?>
    			<p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
    		<?php endif; ?>