LLMS_Question_Choice::create( array $data )

Creates a new question


Parameters Parameters

$data

(array) (Required) question data array


Top ↑

Return Return

(self)


Top ↑

Source Source

File: includes/models/model.llms.question.choice.php

64
65
66
67
68
69
public function create( $data ) {
 
    $this->id = uniqid();
    return $this->update( $data )->save();
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.16.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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