EModal_Model::delete()


Description Description


Source Source

File: includes/importer/easy-modal-v2/model.php

	public function delete() {
		global $wpdb;
		$table_name = $wpdb->prefix . $this->_table_name;

		return $wpdb->delete( $table_name, array( $this->_pk => $this->{$this->_pk} ) );
	}

Top ↑

User Contributed Notes User Contributed Notes

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