-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/3.4.68' into v3
- Loading branch information
Showing
13 changed files
with
230 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php | ||
/** | ||
* SEOmatic plugin for Craft CMS 3.x | ||
* | ||
* A turnkey SEO implementation for Craft CMS that is comprehensive, powerful, | ||
* and flexible | ||
* | ||
* @link https://nystudio107.com | ||
* @copyright Copyright (c) 2017 nystudio107 | ||
*/ | ||
|
||
namespace nystudio107\seomatic\events; | ||
|
||
use craft\base\ElementInterface; | ||
use nystudio107\seomatic\models\MetaBundle; | ||
use yii\base\Event; | ||
|
||
/** | ||
* @author nystudio107 | ||
* @package Seomatic | ||
* @since 3.4.68 | ||
*/ | ||
class IncludeSitemapEntryEvent extends Event | ||
{ | ||
// Properties | ||
// ========================================================================= | ||
|
||
/** | ||
* @var ElementInterface The Craft element corresponding to the sitemap entry | ||
*/ | ||
public $element; | ||
|
||
/** | ||
* @var MetaBundle The SEOmatic MetaBundle corresponding to the sitemap entry | ||
*/ | ||
public $metaBundle; | ||
|
||
/** | ||
* @var bool Whether to include the sitemap entry. | ||
*/ | ||
public $include; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.