Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
0a709b10
Commit
0a709b10
authored
Aug 12, 2014
by
Klimov Paul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Model parameter added to `yii\behaviors\Sluggable::uniqueSlugGenerator` callback
parent
0f4d8ac4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
10 deletions
+2
-10
SluggableBehavior.php
framework/behaviors/SluggableBehavior.php
+2
-10
No files found.
framework/behaviors/SluggableBehavior.php
View file @
0a709b10
...
...
@@ -85,14 +85,6 @@ class SluggableBehavior extends AttributeBehavior
/**
* @var array configuration for slug uniqueness validator. Parameter 'class' may be omitted - by default
* [[UniqueValidator]] will be used.
* For example:
*
* ```php
* [
* 'filter' => ['type' => 1, 'status' => 2]
* ]
* ```
*
* @see UniqueValidator
*/
public
$uniqueValidator
=
[];
...
...
@@ -101,7 +93,7 @@ class SluggableBehavior extends AttributeBehavior
* slug is not unique. This should be a PHP callable with following signature:
*
* ```php
* function ($baseSlug, $iteration)
* function ($baseSlug, $iteration
, $model
)
* {
* // return uniqueSlug
* }
...
...
@@ -207,7 +199,7 @@ class SluggableBehavior extends AttributeBehavior
private
function
generateUniqueSlug
(
$baseSlug
,
$iteration
)
{
if
(
is_callable
(
$this
->
uniqueSlugGenerator
))
{
return
call_user_func
(
$this
->
uniqueSlugGenerator
,
$baseSlug
,
$iteration
);
return
call_user_func
(
$this
->
uniqueSlugGenerator
,
$baseSlug
,
$iteration
,
$this
->
owner
);
}
else
{
return
$baseSlug
.
'-'
.
(
$iteration
+
1
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment