/**
  * Enable the display
  * @NoAdminRequired
  * @param string $file File path
  * @param int $version Allowed values are stored in appconfig "versions"
  * @param string $filetype
  */
 public function disable()
 {
     Helper::disable();
     return array('status' => 'success', 'data' => array('msg' => $this->l->t('SetPassword successfully created')));
 }
Esempio n. 2
0
<?php

/**
 * ownCloud - User Set Password
 *
 * @author Patrick Paysant <*****@*****.**>
 * @copyright 2015 CNRS DSI
 * @license This file is licensed under the Affero General Public License version 3 or later. See the COPYING file.
 */
namespace OCA\User_Set_Password;

use OCA\User_Set_Password\App\User_Set_Password;
use OCA\User_Set_Password\Lib\Helper;
$app = new User_Set_Password();
$c = $app->getContainer();
/**
 * Load js and css
 */
\OCP\Util::addStyle($c->query('AppName'), 'colorbox');
\OCP\Util::addScript($c->query('AppName'), 'jquery.colorbox');
\OCP\Util::addscript($c->query('AppName'), 'setpassword');
\OCP\Util::addStyle($c->query('AppName'), 'setpassword');
if (\OCP\User::isLoggedIn() and Helper::isEnabled()) {
    \OC_Util::addScript('3rdparty', 'strengthify/jquery.strengthify');
    \OC_Util::addStyle('3rdparty', 'strengthify/strengthify');
    \OC_Util::addScript('3rdparty', 'chosen/chosen.jquery.min');
    \OC_Util::addStyle('3rdparty', 'chosen/chosen');
    \OCP\Util::addScript($c->query('AppName'), 'activate');
}