Plus_King_Base.

Namespace \PlusBusinessSoftware\King
Bestand: Plus_King_Base.php

				
								/**
			 * Manipulate the XML property to be added
			 *
			 * @filter plus_add_xml_element_property.
			 * @param string $xml_property The property to be added
			 * @param SimpleXMLElement $xml_object The SimpleXMLElement object to which the new element will be added
			 * @param mixed $xml_value The value for the property to be added
			 * @param string $context A context in which the XML is being built
			 * @return string The property to be added
			 */
			$xml_property = apply_filters( 'plus_add_xml_element_property', $xml_property, $xml_object, $xml_value, $context );

				
			
				
								/**
			 * Manipulate the value for the XML property to be added
			 *
			 * @filter plus_add_xml_element_value.
			 * @param mixed $xml_value The value for the property to be added
			 * @param SimpleXMLElement $xml_object The SimpleXMLElement object to which the new element will be added
			 * @param string $xml_property The property to be added
			 * @param string $context A context in which the XML is being built
			 * @return mixed The value for the property to be added
			 */
			$xml_value    = apply_filters( 'plus_add_xml_element_value', $xml_value, $xml_object, $xml_property, $context );