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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
148ba636
Commit
148ba636
authored
Jun 19, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3911 from creocoder/sluggable-behavior
[READY] \yii\behaviors\SluggableBehavior
parents
b2ceceb1
038257e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
0 deletions
+74
-0
SluggableBehavior.php
framework/behaviors/SluggableBehavior.php
+74
-0
No files found.
framework/behaviors/SluggableBehavior.php
0 → 100644
View file @
148ba636
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\behaviors
;
use
yii\base\InvalidConfigException
;
use
yii\db\BaseActiveRecord
;
use
yii\helpers\Inflector
;
/**
* SluggableBehavior automatically fills the specified attribute with the transliterated and adjusted version to use in URLs.
*
* To use SluggableBehavior, insert the following code to your ActiveRecord class:
*
* ```php
* use yii\behaviors\SluggableBehavior;
*
* public function behaviors()
* {
* return [
* [
* 'class' => SluggableBehavior::className(),
* 'attribute' => 'title',
* ],
* ];
* }
* ```
*
* @author Alexander Kochetov <creocoder@gmail.com>
* @since 2.0
*/
class
SluggableBehavior
extends
AttributeBehavior
{
/**
* @var string
*/
public
$slugAttribute
=
'slug'
;
/**
* @var string
*/
public
$attribute
;
/**
* @inheritdoc
*/
public
function
init
()
{
parent
::
init
();
if
(
empty
(
$this
->
attributes
))
{
$this
->
attributes
=
[
BaseActiveRecord
::
EVENT_BEFORE_VALIDATE
=>
$this
->
slugAttribute
];
}
if
(
$this
->
attribute
===
null
&&
$this
->
value
===
null
)
{
throw
new
InvalidConfigException
(
'Either "attribute" or "value" properties must be specified.'
);
}
}
/**
* @inheritdoc
*/
protected
function
getValue
(
$event
)
{
if
(
$this
->
attribute
!==
null
)
{
$this
->
value
=
Inflector
::
slug
(
$this
->
owner
->
{
$this
->
attribute
});
}
return
parent
::
getValue
(
$event
);
}
}
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