Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

LLMS_Admin_Builder::process_trash_item_non_post_type( string $id )

Delete non-post type elements


Description Description

Currently handles deletion of question choices. In the future additional non-post type elements may be handled by this method.


Top ↑

Parameters Parameters

$id

(string) (Required) Custom item ID. This should be a question choice id in the format of "${question_id}:{$choice_id}".


Top ↑

Return Return

(null|true|WP_Error) null when the $id cannot be parsed into a question choice id. true on success. WP_Error when an error is encountered.


Top ↑

Source Source

File: includes/admin/class.llms.admin.builder.php

		}

		return $res;

	}

	/**
	 * Delete non-post type elements
	 *
	 * Currently handles deletion of question choices. In the future additional non-post type elements
	 * may be handled by this method.
	 *
	 * @since 3.37.12
	 *
	 * @param string $id Custom item ID. This should be a question choice id in the format of "{$question_id}:{$choice_id}".
	 * @return null|true|WP_Error `null` when the $id cannot be parsed into a question choice id.
	 *                            `true` on success.
	 *                            `WP_Error` when an error is encountered.
	 */
	private static function process_trash_item_non_post_type( $id ) {

		// Can't process.
		if ( false === strpos( $id, ':' ) ) {
			return null;


Top ↑

Changelog Changelog

Changelog
Version Description
3.37.12 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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