yii\BaseYii::powered PHP Method

powered() public static method

Returns an HTML hyperlink that can be displayed on your Web page showing "Powered by Yii Framework" information.
public static powered ( ) : string
return string an HTML hyperlink that can be displayed on your Web page showing "Powered by Yii Framework" information
    public static function powered()
    {
        return \Yii::t('yii', 'Powered by {yii}', ['yii' => '<a href="http://www.yiiframework.com/" rel="external">' . \Yii::t('yii', 'Yii Framework') . '</a>']);
    }