??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/servermailblast.com/wp-includes__9dabcd8/SimplePie/src/Category.php
⬅ Kembali
<?php
// SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
// SPDX-License-Identifier: BSD-3-Clause
declare(strict_types=1);
namespace SimplePie;
/**
* Manages all category-related data
*
* Used by {@see \SimplePie\Item::get_category()} and {@see \SimplePie\Item::get_categories()}
*
* This class can be overloaded with {@see \SimplePie\SimplePie::set_category_class()}
*/
class Category
{
/**
* Category identifier
*
* @var string|null
* @see get_term
*/
public $term;
/**
* Categorization scheme identifier
*
* @var string|null
* @see get_scheme()
*/
public $scheme;
/**
* Human readable label
*
* @var string|null
* @see get_label()
*/
public $label;
/**
* Category type
*
* category for <category>
* subject for <dc:subject>
*
* @var string|null
* @see get_type()
*/
public $type;
/**
* Constructor, used to input the data
*
* @param string|null $term
* @param string|null $scheme
* @param string|null $label
* @param string|null $type
*/
public function __construct(?string $term = null, ?string $scheme = null, ?string $label = null, ?string $type = null)
{
$this->term = $term;
$this->scheme = $scheme;
$this->label = $label;
$this->type = $type;
}
/**
* String-ified version
*
* @return string
*/
public function __toString()
{
// There is no $this->data here
return md5(serialize($this));
}
/**
* Get the category identifier
*
* @return string|null
*/
public function get_term()
{
return $this->term;
}
/**
* Get the categorization scheme identifier
*
* @return string|null
*/
public function get_scheme()
{
return $this->scheme;
}
/**
* Get the human readable label
*
* @param bool $strict
* @return string|null
*/
public function get_label(bool $strict = false)
{
if ($this->label === null && $strict !== true) {
return $this->get_term();
}
return $this->label;
}
/**
* Get the category type
*
* @return string|null
*/
public function get_type()
{
return $this->type;
}
}
class_alias('SimplePie\Category', 'SimplePie_Category');
Nama
Tipe
Ukuran
Diubah
Aksi
📁 Cache
dir
—
2026-06-12 08:08
📁 Content
dir
—
2026-06-12 08:08
📁 HTTP
dir
—
2026-06-12 08:08
📁 Net
dir
—
2026-06-12 08:08
📁 Parse
dir
—
2026-06-12 08:08
📁 XML
dir
—
2026-06-12 08:08
📄 .htaccess
htaccess
420 B
2026-06-12 08:08
🐘 Author.php
php
1.9 KB
2025-12-03 05:04
🐘 Cache.php
php
3.2 KB
2025-12-03 05:04
🐘 Caption.php
php
3 KB
2025-12-03 05:04
🐘 Category.php
php
2.4 KB
2025-12-03 05:04
🐘 Copyright.php
php
1.7 KB
2025-12-03 05:04
🐘 Credit.php
php
2.1 KB
2025-12-03 05:04
🐘 Enclosure.php
php
31.4 KB
2025-12-03 05:04
🐘 Exception.php
php
355 B
2025-12-03 05:04
🐘 File.php
php
18.9 KB
2025-12-03 05:04
🐘 Gzdecode.php
php
8.3 KB
2025-12-03 05:04
🐘 IRI.php
php
34 KB
2025-12-03 05:04
🐘 Item.php
php
128.5 KB
2025-12-03 05:04
🐘 Locator.php
php
16.3 KB
2025-12-03 05:04
🐘 Misc.php
php
68.2 KB
2025-12-03 05:04
🐘 Parser.php
php
34.1 KB
2025-12-03 05:04
🐘 Rating.php
php
1.8 KB
2025-12-03 05:04
🐘 Registry.php
php
7.7 KB
2025-12-03 05:04
🐘 RegistryAware.php
php
447 B
2025-12-03 05:04
🐘 Restriction.php
php
2.3 KB
2025-12-03 05:04
🐘 Sanitize.php
php
29.6 KB
2025-12-03 05:04
🐘 SimplePie.php
php
125.1 KB
2025-12-03 05:04
🐘 Source.php
php
23.2 KB
2025-12-03 05:04