Papi_Entry_Type::get_properties PHP Méthode

get_properties() public méthode

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