Papi_Entry_Type::get_properties PHP Method

get_properties() public method

Get root properties.
public get_properties ( ) : array
return array
    public function get_properties()
    {
        $boxes = $this->get_boxes();
        $list = [];
        foreach ($boxes as $box) {
            foreach ($box->properties as $property) {
                $list[] = $property;
            }
        }
        return $list;
    }