Lines Matching refs:name

23  * 	* Neither the name of the SimplePie Team nor the names of its contributors may be used
2134 * namespace and tag name. Each element has `attribs`, `data` and `child`
2136 * `attribs` then has one level of associative name => value data (where
2155 * @param string $tag Tag name
2195 * @param string $tag Tag name
2241 * @param string $tag Tag name
2446 $name = null;
2449 if (isset($author['child'][self::NAMESPACE_ATOM_10]['name'][0]['data'])) {
2450 $name = $this->sanitize($author['child'][self::NAMESPACE_ATOM_10]['name'][0]['data'], self::CONSTRUCT_TEXT);
2458 if ($name !== null || $email !== null || $uri !== null) {
2459 $authors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
2463 $name = null;
2466 if (isset($author[0]['child'][self::NAMESPACE_ATOM_03]['name'][0]['data'])) {
2467 $name = $this->sanitize($author[0]['child'][self::NAMESPACE_ATOM_03]['name'][0]['data'], self::CONSTRUCT_TEXT);
2475 if ($name !== null || $email !== null || $url !== null) {
2476 $authors[] = $this->registry->create(Author::class, [$name, $url, $email]);
2525 $name = null;
2528 if (isset($contributor['child'][self::NAMESPACE_ATOM_10]['name'][0]['data'])) {
2529 $name = $this->sanitize($contributor['child'][self::NAMESPACE_ATOM_10]['name'][0]['data'], self::CONSTRUCT_TEXT);
2537 if ($name !== null || $email !== null || $uri !== null) {
2538 $contributors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
2542 $name = null;
2545 if (isset($contributor['child'][self::NAMESPACE_ATOM_03]['name'][0]['data'])) {
2546 $name = $this->sanitize($contributor['child'][self::NAMESPACE_ATOM_03]['name'][0]['data'], self::CONSTRUCT_TEXT);
2554 if ($name !== null || $email !== null || $url !== null) {
2555 $contributors[] = $this->registry->create(Author::class, [$name, $url, $email]);
3087 * @param string $method Method name