Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/16/2015 in all areas

  1. wireshell 0.4.0 is out Big update with a lot of contributed commands and interfaces: "Module Download" command, extended "Module Enable" command, enhanced "User Create", added "User Delete", "User List" and "User Update" (thanks @justb3a). "Module Generate" command using modules.pw (thanks @nico), added "Status" command listing information on development, ProcessWire installation, image libraries (thanks @horst). wireshell's code and documentation were extended/cleaned up by @clsource. Also 0.4.0 introduced documentation microsite, wireshell Sorry, justbea and clsource, I seem to have messed up the PR's in a way that you aren't listed as project contributors on the GitHub page
    8 points
  2. I understand that, but if you want to write about something, make sure you understood at least the basics.
    3 points
  3. Version update 1.1.0 Extended Module Setting Options Max number of backups Minimum 1, default and maximum 100 (defined in constant MAXFILES). Executed with each cron. Deadline Will remove backups older than selected time interval with each cron. Name format syntax # placeholder for db-name. Use surrounding % to escape date() format. Remove backups from module settings dialog Select how many backups you want to keep in storage. Klick *SAVE* to execute.
    2 points
  4. Page Field Edit Links GitHub: https://github.com/thetuningspoon/AdminPageFieldEditLinks Direct Download: https://github.com/thetuningspoon/AdminPageFieldEditLinks/archive/master.zip This module is based on--and is the successor to--Macrura's AdminPageSelectEditLinks (https://processwire.com/talk/topic/8477-adminpageselecteditlinks-module-for-enabling-edit-links-on-multipage-selects/) Page Field Edit Links adds modal editing capability to ProcessWire's Page fields in the admin editor, allowing editors to easily view and edit the content of any page(s) that have been selected, as well as create new pages without leaving the current screen. Edit links are updated in real time when new pages are added to the field. Compatible with all available types of Inputfields including Select, SelectMultiple, Checkboxes, Radios, AsmSelect, PageListSelect, PageListSelectMultiple, and PageAutocomplete.
    1 point
  5. Hello Tom, thank You for your feedback here! It's a anonymous function problem / missing feature. I have to add a PHP 5.4 dependency or find a workaround. I missed that because I tested it with a PHP 5.5.24. See here: http://php.net/manual/en/functions.anonymous.php That could be a workaround... /** * Username form field * @return InputfieldText Username field */ protected function usernameRegister() { $field = $this->modules->get('InputfieldText'); $field->label = $this->_('Username'); $field->attr('id+name', 'username'); $field->required = 1; $field->fhSanitizer = 'username'; // workaround PHP 5.3 $fu = $this; //$field->addHookAfter('processInput', function($event) { $field->addHookAfter('processInput', function($event) use ($fu) { $field = $event->object; // workaround PHP 5.3 //$username = $this->form->fhValue($field->name); $username = $fu->attr('form')->fhValue($field->name); if (empty($username)) return; elseif (wire('users')->count("name={$username}") == 0) { // workaround PHP 5.3 //$this->userObj->name = $username; $fu->attr('userObj')->name = $username; } else { $field->error(__('Username already taken!')); } }); return $field; } I think some more changes like that have to be done to get it work with PHP 5.3 But I don't know if it make sense to make it PHP 5.3 compatible. But should be no problem if that's all... P.S.: Sorry for confusion of different topics *g* The correct support topic is: https://processwire.com/talk/topic/9811-frontenduser-login-logout-and-register-users-members/
    1 point
  6. Hi all, really great work. Why don't you use this logo you have posted before? I think it is much better then the one on the website.
    1 point
  7. Great to see all the new additions, as well as the microsite - superb work!
    1 point
  8. please disregard my question
    1 point
×
×
  • Create New...