diff options
| author | Remi Collet <remi@remirepo.net> | 2025-04-01 07:51:58 +0200 | 
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2025-04-01 07:51:58 +0200 | 
| commit | b46b43e3fef4803849433c750b3bca5d5aba1339 (patch) | |
| tree | ee903a44d99a45433d879bdecc3362f4f7c865c1 /REFLECTION | |
| parent | e06370f4db87e6af22f3d52bbefd5edd710451ea (diff) | |
update to 5.9.1
Diffstat (limited to 'REFLECTION')
| -rw-r--r-- | REFLECTION | 238 | 
1 files changed, 236 insertions, 2 deletions
| @@ -1,4 +1,4 @@ -Extension [ <persistent> extension #129 phalcon version 5.9.0 ] { +Extension [ <persistent> extension #130 phalcon version 5.9.1 ] {    - Dependencies {      Dependency [ pdo (Required) ] @@ -74,7 +74,7 @@ Extension [ <persistent> extension #129 phalcon version 5.9.0 ] {      }    } -  - Classes [617] { +  - Classes [618] {      Interface [ <internal:phalcon> interface Phalcon\Di\InjectionAwareInterface ] {        - Constants [0] { @@ -55634,6 +55634,240 @@ Extension [ <persistent> extension #129 phalcon version 5.9.0 ] {        }      } +    Class [ <internal:phalcon> class Phalcon\Html\Helper\Breadcrumbs extends Phalcon\Html\Helper\AbstractHelper ] { + +      - Constants [0] { +      } + +      - Static properties [0] { +      } + +      - Static methods [0] { +      } + +      - Properties [9] { +        Property [ protected $delimiter = '' ] +        Property [ protected $escaper = NULL ] +        Property [ protected $indent = '    ' ] +        Property [ protected $indentLevel = 1 ] +        Property [ private $attributes = NULL ] +        Property [ private $data = NULL ] +        Property [ private $separator = '<li>/</li>' ] +        Property [ private $template = NULL ] +        Property [ private $interpolator = NULL ] +      } + +      - Methods [25] { +        Method [ <internal:phalcon, overwrites Phalcon\Html\Helper\AbstractHelper, ctor> public method __construct ] { + +          - Parameters [1] { +            Parameter #0 [ <required> Phalcon\Html\Escaper\EscaperInterface $escaper ] +          } +        } + +        Method [ <internal:phalcon> public method __invoke ] { + +          - Parameters [2] { +            Parameter #0 [ <optional> string $indent = <default> ] +            Parameter #1 [ <optional> ?string $delimiter = <default> ] +          } +          - Return [ Phalcon\Html\Helper\Breadcrumbs ] +        } + +        Method [ <internal:phalcon> public method add ] { + +          - Parameters [4] { +            Parameter #0 [ <required> string $text ] +            Parameter #1 [ <optional> string $link = <default> ] +            Parameter #2 [ <optional> string $icon = <default> ] +            Parameter #3 [ <optional> array $attributes = [] ] +          } +          - Return [ Phalcon\Html\Helper\Breadcrumbs ] +        } + +        Method [ <internal:phalcon> public method clear ] { + +          - Parameters [0] { +          } +          - Return [ void ] +        } + +        Method [ <internal:phalcon> public method clearAttributes ] { + +          - Parameters [0] { +          } +          - Return [ Phalcon\Html\Helper\Breadcrumbs ] +        } + +        Method [ <internal:phalcon> public method getAttributes ] { + +          - Parameters [0] { +          } +          - Return [ array ] +        } + +        Method [ <internal:phalcon> public method getSeparator ] { + +          - Parameters [0] { +          } +          - Return [ string ] +        } + +        Method [ <internal:phalcon> public method getTemplate ] { + +          - Parameters [0] { +          } +          - Return [ array ] +        } + +        Method [ <internal:phalcon> public method remove ] { + +          - Parameters [1] { +            Parameter #0 [ <required> int $index ] +          } +          - Return [ void ] +        } + +        Method [ <internal:phalcon> public method render ] { + +          - Parameters [0] { +          } +          - Return [ string ] +        } + +        Method [ <internal:phalcon> public method setAttributes ] { + +          - Parameters [1] { +            Parameter #0 [ <required> array $attributes ] +          } +          - Return [ Phalcon\Html\Helper\Breadcrumbs ] +        } + +        Method [ <internal:phalcon> public method setSeparator ] { + +          - Parameters [1] { +            Parameter #0 [ <required> string $separator ] +          } +          - Return [ Phalcon\Html\Helper\Breadcrumbs ] +        } + +        Method [ <internal:phalcon> public method setTemplate ] { + +          - Parameters [3] { +            Parameter #0 [ <required> string $main ] +            Parameter #1 [ <required> string $line ] +            Parameter #2 [ <required> string $last ] +          } +          - Return [ Phalcon\Html\Helper\Breadcrumbs ] +        } + +        Method [ <internal:phalcon> public method toArray ] { + +          - Parameters [0] { +          } +          - Return [ array ] +        } + +        Method [ <internal:phalcon> private method getLink ] { + +          - Parameters [2] { +            Parameter #0 [ <required> string $template ] +            Parameter #1 [ <required> array $element ] +          } +          - Return [ string ] +        } + +        Method [ <internal:phalcon> private method processAttributes ] { + +          - Parameters [1] { +            Parameter #0 [ <required> array $attributes ] +          } +          - Return [ string ] +        } + +        Method [ <internal:phalcon, inherits Phalcon\Html\Helper\AbstractHelper> protected method close ] { + +          - Parameters [2] { +            Parameter #0 [ <required> string $tag ] +            Parameter #1 [ <optional> bool $raw = <default> ] +          } +          - Return [ string ] +        } + +        Method [ <internal:phalcon, inherits Phalcon\Html\Helper\AbstractHelper> protected method indent ] { + +          - Parameters [0] { +          } +          - Return [ string ] +        } + +        Method [ <internal:phalcon, inherits Phalcon\Html\Helper\AbstractHelper> protected method orderAttributes ] { + +          - Parameters [2] { +            Parameter #0 [ <required> array $overrides ] +            Parameter #1 [ <required> array $attributes ] +          } +          - Return [ array ] +        } + +        Method [ <internal:phalcon, inherits Phalcon\Html\Helper\AbstractHelper> protected method renderArrayElements ] { + +          - Parameters [2] { +            Parameter #0 [ <required> array $elements ] +            Parameter #1 [ <required> string $delimiter ] +          } +          - Return [ string ] +        } + +        Method [ <internal:phalcon, inherits Phalcon\Html\Helper\AbstractHelper> protected method renderAttributes ] { + +          - Parameters [1] { +            Parameter #0 [ <required> array $attributes ] +          } +          - Return [ string ] +        } + +        Method [ <internal:phalcon, inherits Phalcon\Html\Helper\AbstractHelper> protected method renderElement ] { + +          - Parameters [2] { +            Parameter #0 [ <required> string $tag ] +            Parameter #1 [ <optional> array $attributes = [] ] +          } +          - Return [ string ] +        } + +        Method [ <internal:phalcon, inherits Phalcon\Html\Helper\AbstractHelper> protected method renderFullElement ] { + +          - Parameters [4] { +            Parameter #0 [ <required> string $tag ] +            Parameter #1 [ <required> string $text ] +            Parameter #2 [ <optional> array $attributes = [] ] +            Parameter #3 [ <optional> bool $raw = <default> ] +          } +          - Return [ string ] +        } + +        Method [ <internal:phalcon, inherits Phalcon\Html\Helper\AbstractHelper> protected method renderTag ] { + +          - Parameters [3] { +            Parameter #0 [ <required> string $tag ] +            Parameter #1 [ <optional> array $attributes = [] ] +            Parameter #2 [ <optional> string $close = <default> ] +          } +          - Return [ string ] +        } + +        Method [ <internal:phalcon, inherits Phalcon\Html\Helper\AbstractHelper> protected method selfClose ] { + +          - Parameters [2] { +            Parameter #0 [ <required> string $tag ] +            Parameter #1 [ <optional> array $attributes = [] ] +          } +          - Return [ string ] +        } +      } +    } +      Class [ <internal:phalcon> class Phalcon\Html\Helper\Button extends Phalcon\Html\Helper\AbstractHelper ] {        - Constants [0] { | 
