Jump to content

ukyo

Members
  • Posts

    262
  • Joined

  • Last visited

  • Days Won

    6

Posts posted by ukyo

  1. 2 minutes ago, fruid said:

    I actually have a very specific issue that I'm stuck with…

    How do I make the module create the template files, not just the templates in the database via API but also the corresponding php files in the webcontent when being installed?

    You can create your templates inside your modules folder, like "MyModule/templates/" on module installation you can copy these templates to "site/templates/" folder.

    • Like 1
  2. @modifiedcontent Can you put these files under a folder something like : templates/extends or site/src. After do that can you add this path to wire classLoader.

    You can do this on ready.php file or you can try it before apply your customizations (didn't try that).

    <?php
    // ready.php example
    
    $template = $page->template->name;
    
    if (in_array($template, ['template-with-comment-field'])) {
      wire('classLoader')->addNamespace('ProcessWire', wire('config')->paths->templates . '/extends');
      // or
      wire('classLoader')->addNamespace('ProcessWire', wire('config')->paths->site . '/src');
    }

    or (didn't tested)

    <?php
    wire('classLoader')->addNamespace('ProcessWire', wire('config')->paths->templates . '/extends');
    // or
    wire('classLoader')->addNamespace('ProcessWire', wire('config')->paths->site . '/src');
    
    $page->comments->render(['className' => 'CommentListCustom']);
    $page->comments->renderForm(['className' => 'CommentFormCustom']);

     

  3. I am currently working on custom comment form output and custom comment list output. I copied `CommentForm.php` as `CommentFormUikit.php` and copied `CommentList.php` as `CommentListUikit.php`.

    Renamed class names on these and extend base classes  files and removed not used codes and modified needed sections.

    When i want to use my custom outputs :

    <?php
    // include customization classes
    include __DIR__ . '/CommentListUikit.php';
    include __DIR__ . '/CommentFormUikit.php';
    
    // custom list output
    echo $page->comments->render(['className' => 'CommentListUikit']);
    // custom form output
    echo $page->comments->renderForm(['className' => 'CommentFormUikit']);
    ?>

    CommentListUikit.php

    <?php
    
    namespace ProcessWire;
    
    class CommentListUikit extends CommentList
    {
    // do your customizations
    }

    CommentFormUikit.php

    <?php
    
    namespace ProcessWire;
    
    class CommentFormUikit extends CommentForm
    {
    // do your customizations
    }

    Example output for uikit 3 frontend framework, still working on it, specially writing a javascript for comment form

    425478768_EkranResmi2020-12-2218_26_31.thumb.png.3a57f88e62a1c95ade560619b57244f1.png

    • Like 1
  4. On 6/20/2020 at 11:44 PM, Ivan Gretsky said:

    Hello, @ukyo!

    I absolutely love your module. And trying to incorporate it in my site-building workflow. I did install it without a problem and am using it for storing some output settings with great success)

    But today I found two (probably, related) bugs:

    1. I cannot create a new Page Reference field. I am getting this error: "Call to a member function getField() on null" (...\Mystique\FieldtypeMystique.module.php:71).
    2. I cannot view a list of pages with certain template (see the screenshot). The error message is the same.mystique.thumb.jpg.660ef9911db96c02569fca6ff185eee0.jpg

    Do you understand what it is?

    I fixed this error, but i can't update module on module directory. There is an error on module directory at the moment.

    170864102_EkranResmi2020-06-2219_47_18.png.5a36b1b6e0d0dac0b8d9c74915008faa.png

    You can update module by directly downloading it from Github.

    • Like 2
  5. On 4/10/2020 at 2:18 AM, gingebaker said:

    Hi.

    I had the same problem like @fliwire with changed resource property in template context not getting saved and outputted correctly.

    I changed the FieldtypeMystique::getBlankValue() method a bit:

    
    public function getBlankValue(Page $page, Field $field)
    {
        return new MystiqueValue($page, $page->template->fieldgroup->getField($field,true));
    }

    API Ref: https://processwire.com/api/ref/fieldgroup/get-field/
    With this change you are getting the field in context of the current page template. Then you have the correct resource filename in $field->resource.
    This works here in my setup, but I haven't been able to test much for now. Hope this does not break something else.

    Anyway, thanks for this module. Looks very promising!

    Suggested fix applied, module updated.

    • Like 3
  6. 4 hours ago, fliwire said:

    tested: resource showing propery but with empy values.  In database field saved with default resource and template resource.

     

    
    {"title":"","title1033":"","title1185":"","__json":null,"__name":"settings","__path":"D:\/Laragon\/www\/protest\/site\/templates\/configs\/Mystique.settings.php","video":"11111111","video1033":"22222222","video1185":"333333333","__resource":"settings"}

     

    Will check it

  7. 2 hours ago, fliwire said:

    template overwrite field input settings has bug. Selected resource is saving properly but when shown all inputs empty.  

    Checked db value, db has also default input resource and home page resource. Expect only home page values. (counts in below code).

     

    
    {"title":"","checkbox":"","headline":"","summary":"","fieldset":"","fieldset_title":"","fieldset_description":"","another_fieldset":"","another_fieldset_title":"","another_fieldset_description":"","content":"","__json":null,"__name":"example-dive","counts":"888888888","__resource":"settings"}

     

     

    19 days ago, I created an issue. Waiting for fix or a solution. 

  8. 22 hours ago, fliwire said:

    Hi, tried last version. Two Bugs:
     

    1- When update module old module files renamed to ".Mystique" folder and this folder still listing "Resource" list and not shown in editor.
    2- useLanguages also has bug. If admin language not default language, default language value not saved properly.  Default language value gets it's value from selected language.

     

    Module updated, CHANGELOG

    • Like 2
    • Thanks 2
  9. 14 hours ago, huseyin said:

    In Turkey we have offically 1 covid-19 case.

    Today the Govermant has decided to close all schools and universities for 2 weeks.

    All sports events will be held without spectators.

    All public servants are prohibited to leave Turkey.

    Some kind of food is rare at the warehouses.

    We have not noticed any donws of our work or clients, but expecting bad for the near future.

    Today we have 2 covid-19 case.

    I live in Turkey (Marmaris). Everything normal at the moment. I work from office.

  10. 2 minutes ago, MilenKo said:

    Hello again @LAPS & @ukyo . I just tested the module with the -new version you've shared and am still seeing the same error:

    Compile Error:     Cannot declare class MarkupFontIconPicker, because the name is already in use (line 10 of C:\domains\mywebsite.com\site\assets\cache\FileCompiler\site\modules\FieldtypeFontIconPicker-next\MarkupFontIconPicker.module)  

    Could you please advise which version should I be using in order to have the name error resolved?

    Follow these steps for solve duplicate problem : 

     

  11. 1 hour ago, bernhard said:

    Ok, thx! So why is that field in the example file? For me as an enduser the experience was: "Oh, wow, that even supports image fields! Let's try it! [uploading] Hm... Doesn't work - maybe another thing that isn't working on Windows due to path issues?" ? 

    PS: When are you planning to merge NEXT into MASTER?

     Next version merged with master branch. Image field removed from example ? sorry about that. Module updated.

    • Like 1
  12. 16 hours ago, bernhard said:

    Finally ? Thank you!

    3X0kd9I.png

    Should the images field from the example Dive be working? When I upload an image the field seems to work but when the upload is done, the field resets itself. All other field data is saved correctly. Any ideas?

    Image & File fields are not supported yet, i will check these fields later. Feel free to play with module for add support ?

  13. 9 minutes ago, LAPS said:

    Steps I performed:
    1. FieldtypeFontIconPicker files uploaded.
    2. Admin > Modules > Clear compiled files run.
    3. Admin > Modules > Refresh run.
    4. Browser cache cleared (one never knows).
    5. Steps 2 to 3 repeated once again, and again.

    Result:
    It doesn't work: in the Edit Field > Input > Icon library the libraries (IconPicker.*.php) are not loaded as described in the original issue?

    I added prev brach on github repo, this repo is previous version of module, you can use it. I will try to fix your problem, but let me know your server or computer software versions.

    https://github.com/trk/FieldtypeFontIconPicker/tree/prev

×
×
  • Create New...