addDefinition() public method

Adds a key-value pair to the definition collection for JavaScript.
public addDefinition ( string $Term, string $Definition = null )
$Term string
$Definition string
 /**
  * Add Timeago to all controllers
  *
  * @since  2.0.0
  * @access public
  * @param  Gdn_Controller $sender
  */
 public function base_render_before($sender)
 {
     // Plugin definitions for use in Javascript
     $definitions = array('locale' => array('prefixAgo' => t('timeago.prefixAgo', null), 'prefixFromNow' => t('timeago.prefixFromNow', null), 'suffixAgo' => t('timeago.suffixAgo', 'ago'), 'suffixFromNow' => t('timeago.suffixFromNow', 'from now'), 'seconds' => t('timeago.seconds', 'less than a minute'), 'minute' => t('timeago.minute', 'about a minute'), 'minutes' => t('timeago.minutes', '%d minutes'), 'hour' => t('timeago.hour', 'about an hour'), 'hours' => t('timeago.hours', 'about %d hours'), 'day' => t('timeago.day', 'a day'), 'days' => t('timeago.days', '%d days'), 'month' => t('timeago.month', 'about a month'), 'months' => t('timeago.months', '%d months'), 'year' => t('timeago.year', 'about a year'), 'years' => t('timeago.years', '%d years'), 'wordSeparator' => t('timeago.wordSeparator', ' '), 'numbers' => array()));
     $sender->addDefinition('Timeago', json_encode($definitions));
     // Add required assets
     $sender->addJsFile('timeago.min.js', 'plugins/timeago');
 }
Esempio n. 2
0
 /**
  * Insert buttonbar resources
  *
  * This method is abstracted because it is invoked by multiple controllers.
  *
  * @param Gdn_Controller $Sender
  */
 protected function attachButtonBarResources($Sender, $Formatter)
 {
     if (!in_array($Formatter, $this->Formats)) {
         return;
     }
     $Sender->addJsFile('buttonbar.js', 'plugins/ButtonBar');
     $Sender->addJsFile('jquery.hotkeys.js', 'plugins/ButtonBar');
     $Sender->addDefinition('ButtonBarLinkUrl', t('ButtonBar.LinkUrlText', 'Enter your URL:'));
     $Sender->addDefinition('ButtonBarImageUrl', t('ButtonBar.ImageUrlText', 'Enter image URL:'));
     $Sender->addDefinition('ButtonBarBBCodeHelpText', t('ButtonBar.BBCodeHelp', 'You can use <b><a href="http://en.wikipedia.org/wiki/BBCode" target="_new">BBCode</a></b> in your post.'));
     $Sender->addDefinition('ButtonBarHtmlHelpText', t('ButtonBar.HtmlHelp', 'You can use <b><a href="http://htmlguide.drgrog.com/cheatsheet.php" target="_new">Simple Html</a></b> in your post.'));
     $Sender->addDefinition('ButtonBarMarkdownHelpText', t('ButtonBar.MarkdownHelp', 'You can use <b><a href="http://en.wikipedia.org/wiki/Markdown" target="_new">Markdown</a></b> in your post.'));
     $Sender->addDefinition('InputFormat', $Formatter);
 }
Esempio n. 3
0
 /**
  * Set password strength meter on a form.
  *
  * @param Gdn_Controller $Controller The controller to add the password strength information to.
  */
 public function addPasswordStrength($Controller)
 {
     $Controller->addJsFile('password.js');
     $Controller->addDefinition('MinPassLength', c('Garden.Registration.MinPasswordLength'));
     $Controller->addDefinition('PasswordTranslations', implode(',', [t('Password Too Short', 'Too Short'), t('Password Contains Username', 'Contains Username'), t('Password Very Weak', 'Very Weak'), t('Password Weak', 'Weak'), t('Password Ok', 'OK'), t('Password Good', 'Good'), t('Password Strong', 'Strong')]));
 }
Esempio n. 4
0
 /**
  * Adds 'Discussion' item to menu.
  *
  * 'base_render_before' will trigger before every pageload across apps.
  * If you abuse this hook, Tim will throw a Coke can at your head.
  *
  * @since 2.0.0
  * @package Vanilla
  *
  * @param Gdn_Controller $sender The sending controller object.
  */
 public function base_render_before($sender)
 {
     if ($sender->Menu) {
         $sender->Menu->addLink('Discussions', t('Discussions'), '/discussions', false, ['Standard' => true]);
     }
     if (!inSection('Dashboard')) {
         // Spoilers assets
         $sender->addJsFile('spoilers.js', 'vanilla');
         $sender->addCssFile('spoilers.css', 'vanilla');
         $sender->addDefinition('Spoiler', t('Spoiler'));
         $sender->addDefinition('show', t('show'));
         $sender->addDefinition('hide', t('hide'));
     }
     // Add user's viewable roles to gdn.meta if user is logged in.
     if (!$sender->addDefinition('Roles')) {
         if (Gdn::session()->isValid()) {
             $roleModel = new RoleModel();
             Gdn::controller()->addDefinition("Roles", $roleModel->getPublicUserRoles(Gdn::session()->UserID, "Name"));
         }
     }
 }