mirror of
https://github.com/humhub/humhub.git
synced 2025-02-25 03:34:10 +01:00
77 lines
2.1 KiB
PHP
77 lines
2.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* HumHub
|
|
* Copyright © 2014 The HumHub Project
|
|
*
|
|
* The texts of the GNU Affero General Public License with an additional
|
|
* permission and of our proprietary license can be found at and
|
|
* in the LICENSE file you have received along with this program.
|
|
*
|
|
* According to our dual licensing model, this program can be used either
|
|
* under the terms of the GNU Affero General Public License, version 3,
|
|
* or under a proprietary license.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*/
|
|
|
|
/**
|
|
* MentionWidget add users to posts and comments
|
|
*
|
|
* @package humhub.widgets
|
|
* @since 0.5
|
|
* @author Andreas Strobel
|
|
*/
|
|
class MentionWidget extends HWidget
|
|
{
|
|
|
|
/**
|
|
* Id or class of input element which should replaced
|
|
*
|
|
* @var string
|
|
*/
|
|
public $element = "";
|
|
|
|
/**
|
|
* JSON Search URL - defaults: search/json
|
|
*
|
|
* The token -keywordPlaceholder- will replaced by the current search query.
|
|
*
|
|
* @var String Url with -keywordPlaceholder-
|
|
*/
|
|
public $userSearchUrl = "";
|
|
|
|
|
|
/**
|
|
* Inits the Mention Widget
|
|
*
|
|
*/
|
|
public function init()
|
|
{
|
|
|
|
// Default user search for all users
|
|
$this->userSearchUrl = Yii::app()->getController()->createUrl('//user/search/json', array('keyword' => '-keywordPlaceholder-'));
|
|
|
|
$assetPrefix = Yii::app()->assetManager->publish(dirname(__FILE__) . '/resources', true, 0, defined('YII_DEBUG'));
|
|
Yii::app()->clientScript->registerScriptFile($assetPrefix . '/jquery.textrange.js', CClientScript::POS_END);
|
|
Yii::app()->clientScript->registerScriptFile($assetPrefix . '/jquery.mention.js', CClientScript::POS_END);
|
|
Yii::app()->clientScript->registerCssFile($assetPrefix . '/mention.css');
|
|
|
|
}
|
|
|
|
/**
|
|
* Displays / Run the Widget
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->render('mention', array(
|
|
'element' => $this->element,
|
|
'userSearchUrl' => $this->userSearchUrl,
|
|
));
|
|
}
|
|
|
|
}
|