Jump to content

gmclelland

Members
  • Posts

    571
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by gmclelland

  1. If I remember correctly I think they do something similar on the https://processwire-recipes.com/ site using the code from https://github.com/processwire-recipes/ProcessRecipeInstaller Markdown files are stored in this repo https://github.com/processwire-recipes/Recipes Maybe that can give you some ideas?
  2. @bernhard off topic, but what is RockBodyBuilder?
  3. Hmm... I'm not sure. Maybe you can check out the code from: You could also check the code from: Ryan also shows an example Hope that helps point you in the right direction. Others here may chime in as well.
  4. The "open" dialog box you see is a Windows only thing. Mac users don't have the same dialog. So it may be working as intended. What happens if you try to upload a pdf file? Does it give you an error? What happens when you upload an mp3 file? Does it give you an error?
  5. I believe the problem is when the pages are stored under the admin branch it will apply admin permissions. I think you have use include=all in your find?
  6. So it sounds like you are wanting the ability to select a file from an predefined directory? Then the user can select the file using some kind of file browser where you can drill down to select the file you want? It would be cool if someone made another module that can either extend the core imagefield or create a new fieldtype to allow for different sources to be added via additional modules? I've used something like this before in Drupal with the https://www.drupal.org/project/filefield_sources module. You can see all the modules that integrate with it at https://www.drupal.org/search/site/filefield sources. In the screenshot below, you can see the different toggle links/tabs that are added: Upload, File Browser, Reference existing, Remote URL. Each additional module can add more toggle links to change the input that is used. Sources are configured per field in the field settings. If we had a module like that, then we could create an another integrated module that adds a "File browser" source link/tab that uses an input similar to the "Page List Select Multiple" input field type from the core Page Reference module, but instead of pages show/select files and folders? Maybe the input could look something like this?? Taken from PageListImage module at There is also already a module to select files, but maybe it could be modified to add a new inputfield type similar to image above? Or maybe you could have a module like https://www.drupal.org/project/imce and https://www.drupal.org/project/imce_filefield that just adds a "Open File Browser" link to the image field that opens IMCE or similar to browse a file system? There is also https://www.drupal.org/project/visual_select_file that has a slightly different UI. I know this isn't a solution, but these are all rough ideas of me thinking out loud in case any one wants to run with it?
  7. I haven't tried it yet, but https://github.com/mr-fan/AutoImagePages might help? Related discussion:
  8. I know this is an older post, but you should be able to do some of this now with this module:
  9. Couldn't you loop over all templates(excluding system templates) and use the template's name along with a count? For example: Basic Page (55) Calendar Postings (77) Job Postings (88) community-event (55) <- this one doesn't have a friendly template name, the others above do Total Pages (400) It would probably be helpful to show file information as well. Like: Documents (1,000) Images (2,000) Audio (30) Videos (40) Total Files (3,000) The number of users would be helpful per role Editors (20) Contributors (25) Vendors (22) System Admins (2) Total Users (60) All of that would probably need to be cached so isn't too taxing on the server. Maybe only displayed to admins as well? I thought I remembered a module that already provides similar counts? I can't remember the name. Maybe I'll remember it later?
  10. Thanks Robin, just tested and it does work. Man, you're fast!
  11. Haven't tried out the module **yet**, but I love the look of these dashboards. One panel that could be useful is a content overview panel like in Wordpress. It would show the amount of pages for each type of page with a link to the built in pages lister that shows all pages filter for that page type. Another feature that might be useful would be the ability to create multiple dashboard pages, or tabs within dashboards like what is shown in the Drupal Workbench module? This could be a dashboard for the user? Maybe you could have a site dashboard(displayed when clicking on the main logo or the Processwire logo or visiting the main processwire admin page at /processwire) and a user dashboard(displayed when a user first logs into the Processwire Admin)? Here is what a "My dashboard"(from drupal.org) for users could look like If we had the ability to create multiple dashboard pages then while creating/editing each dashboard page, you can choose which roles are allowed to view the page. If you do not choose any roles, then only admins can view the dashboard page. For obvious reasons, anonymous users will not be able to save pages or add custom items. All of this might be too complex, but I thought would just get these thoughts out of my head in case anybody liked them. Here is another dashboard I found just to give others some ideas of what could probably be created with this module. Anyways, thanks for making this module. Look forward to trying it soon.
  12. Hi @Robin S, just wanted to let you know that I tried out the latest version, but it didn't seem to work with the file/image files with no extension. Here are some examples that didn't work for me: Ex. pdf file with no extension: https://www.charleston-sc.gov/DocumentCenter/View/18787/Certificate-of-Construction-Completion-RES-Checklist?bidId= Ex. image file with no extension: https://www.charleston-sc.gov/ImageRepository/Document?documentID=23023 After saving the page with those urls, it shows the following error message: AddImageUrls: The remote file https://www.charleston-sc.gov/DocumentCenter/View/18787/Certificate-of-Construction-Completion-RES-Checklist?bidId= has no file extension and its MIME type does not correspond with a valid file extension for field "page_files". The file field is configured to allow pdf files and the image field is configured to allow png, jpg, jpeg, gif. Do these urls work for you?
  13. Thanks for adding this to modules directory and combining both module's functionality. ? Not sure if this is possible, but sometimes you have sites that have file urls or image urls with no extensions. Example: mywebsite.com/this-is-a-pdf-link or mywebsite.com/this-is-an-image Urls like that won't work currently with this module. I'm not sure if there is a way to add a check if the url doesn't have an extension, then check the mime type against the allowed extensions? Maybe somehow comparing the two by using $config->fileContentTypes and $ctype = mime_content_type($file->filename); ?
  14. Yes, please. Maybe this would help? https://github.com/dadish/pw-skyscrapers-profile
  15. Haven't used it yet, but I think I read that Mystique is also a good module for this kind of stuff. I have also used SettingsFactory and can say that it works great.
  16. I think this might help you https://processwire.com/api/ref/functions/#pwapi-methods-Functions-API
  17. Hi LAPS, I’m not sure I follow? The article you linked says that it already does this. You elaborate a little more?
  18. @gebeer - FYI... I modified Robin's AddImageUrls module and adapted it to work with file fields now. It's called the AddFileUrls module. @matjazp I'm not sure I fully understand what you want, but maybe you could try the new "AddFileUrls" module and then use some kind of hook to modify and pre-fill the default value of the url in the file field?
  19. Hey @Robin S, I thought this module was handy so I modified the AddImageUrls module and adapted it to work for file fields. I attached the new "AddFileUrls" module. Feel free to upload it to your github or publish these to the module directory. It seems to work well in my testing. Hope that helps AddFileUrls.zip
  20. Thanks @matjazp! It makes sense now. That's a Windows only thing. Macs don't have that.
  21. @horst - what do you mean by this? I don't see anywhere to input any text in a file or image field.
  22. The two “orange” pages have the same page title, but it probably gives them different page names. Look on the settings tab of each page.
  23. Great looking site Macrura! Can you show a screenshot of your PageTable setup? Are you still using the Micro Context thingy that you wrote about in the past, or have you found a better way?
  24. ..Love what you are doing with this module. Thanks for making it. The icon's line weight look too thin in my humble opinion. What about using an icon from the included font-awesome library. You can browse the icons included by editing a template and then go to "Advanced" tab. Then scroll down to the Icon inputfield and click "Show all icons." That might give you some ideas? For an upload icon, maybe fa-upload? For an edit icon, maybe fa-pencil?
  25. Maybe this? https://processwire.com/blog/posts/pw-3.0.145/ See the Inputfield Javascript API
×
×
  • Create New...