Dev Resources

  • Home
  • Reference
  • BuddyX Theme
  • Functions
  • Hooks
  • Classes
Filter by type:
Search
Browse: Home / Reference / Classes / BP_Signup / BP_Signup::__construct()

BP_Signup::__construct( integer $signup_id )

Class constructor.

Contents

  • Description
    • Parameters
    • Source
    • Changelog
  • User Contributed Notes

Description #Description


Parameters #Parameters

$signup_id

(Required) The ID for the signup being queried.


Top ↑

Source #Source

File: bp-members/classes/class-bp-signup.php

	public function __construct( $signup_id = 0 ) {
		if ( !empty( $signup_id ) ) {
			$this->id = $signup_id;
			$this->populate();
		}
	}

Expand full source code Collapse full source code


Top ↑

Changelog #Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes #User Contributed Notes

You must log in before being able to contribute a note or feedback.

Proudly powered by WordPress