Jump to content

webhoes

Members
  • Posts

    233
  • Joined

  • Last visited

Posts posted by webhoes

  1. @androbey the if statements gets triggered by the value of the button. I added the name value with update and this returns update with value update.

    But still the value of map2 stays empty. This is where I would like to have the json string.

    There is a link with name export. That should trigger the layers to convert to a json and bind it to map2. Did not know a way to do it better due to lack of js knowledge. I only know PHP...

  2. Hello, I am trying to save the leaflet draw layer to a database field. I scrambled some code together but can't see the post value in tracydebugger.

    Can anybody give me a hand with this code?

    In the end after the json is submitted to the database after a page refresh the layer needs to be loaded in the leaflet map. That part is not made yet.

     

    <?php
     
    namespace ProcessWire;
     
    if ($input->post->update) {
    $page->json_map = $input->post->map2;
    }
    ?>
     
    <pw-region id="chartjs">
     
    <script src='https://api.mapbox.com/mapbox.js/v3.3.1/mapbox.js'></script>
    <link href='https://api.mapbox.com/mapbox.js/v3.3.1/mapbox.css' rel='stylesheet' />
    <style>
    body {
    margin: 0;
    padding: 0;
    }
     
    #map {
    height: 400px;
    width: 100%;
    }
    </style>
     
    </pw-region>


     
    <pw-region id="content">
    <link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-draw/v0.4.10/leaflet.draw.css' rel='stylesheet' />
    <script src='https://api.mapbox.com/mapbox.js/plugins/leaflet-draw/v0.4.10/leaflet.draw.js'></script>
     
    <div id='map'></div>
     
    <script>
    L.mapbox.accessToken = 'pk.eyJ1IjoiZHJvbmVtYXRpY2EiLCJhIjoiY2tjYXlsMTN0MW54aTJybGpvMmJoMDlhcSJ9.DfvRd_GsoPu8ARWKFVM5EA';
    var map = L.mapbox.map('map')
    .setView([52.3583, 6.66236], 17)
    .addLayer(L.mapbox.styleLayer('mapbox://styles/mapbox/streets-v11'));
     
    var featureGroup = L.featureGroup().addTo(map);
     
    var drawControl = new L.Control.Draw({
    edit: {
    featureGroup: featureGroup
    }
    }).addTo(map);
     
    map.on('draw:created', function(e) {
     
    // Each time a feaute is created, it's added to the over arching feature group
    featureGroup.addLayer(e.layer);
    });
     
     
     
    document.getElementById('export').onclick = function(e) {
    // Extract GeoJson from featureGroup
    var data = featureGroup.toGeoJSON();
     
    // Stringify the GeoJson
    var convertedData = 'text/json;charset=utf-8,' + encodeURIComponent(JSON.stringify(data));
     
    // Create export
    document.getElementById("map2").value = convertedData;
     
    // document.getElementById('export').setAttribute('href', 'data:' + convertedData);
    // document.getElementById('export').setAttribute('download','data.geojson');
    }
    </script>
    <a href='#' id='export'>Export Features</a>
    <form id="form" action="./" method="post">
    <input form=form type="hidden" name="map2" value="">
    <button type="submit" class="btn btn-primary" id="update" value="update">Update</button>
    </form>
    </pw-region>
  3. Hello,

    Is there a way or online website that can crawl my website and create a new CSS of only classes dat are used?

    I currently have CSS file (from themeforest) that contains a lot of unused CSS. I want to strip the unused CSS to create a smaller file.

    Same also for the js files.

    Any thoughts?

  4. 6 minutes ago, a-ok said:

    Is it possible to assign a PDF filename via a hook? I want to assign a different filename (custom, not using {page.id} etc) for different pages.

    Probably.

    You can also do this and use variables.

    $print_date = date("jMY"time());
        $pdf->save();
        $pdf->download('Logbook - ' . $drone->title . ' - ' . $print_date . '.pdf');
  5. I keep getting an error for an frontend page to import csv.

    image.thumb.png.cd30d8aeab1c32a8380327e54a76de9b.png

    $wire->modules->get('TableCsvImportExport'); // load module
    $options = array(
        'delimiter' => ',',
        'enclosure' => '"',
        'convertDecimals' => false,
        'multipleValuesSeparator' => '|',
        'namesFirstRow' => false
    );
    $page->importTableCsv('importTableCsv'$csvData$options);

    For testing page table field is also called importTableCsv

    • Like 1
  6. On 1/14/2017 at 6:24 PM, kongondo said:

    Let's throw in one more... 

    How about using created_users_id/createdUser? It depends on your workflow though. Who creates the users? How are they created? Same for their respective pages. Doing it manually would mean your client heading over to settings tab when editing a page and changing the created user there (would have to be first enabled in the template). This may not be ideal. You could automatically change the created user ID using the API via an autoload module, but that depends on how the users are created since you want to synchronise the two actions. The advantage of this approach is that you can give your user pages whatever name you want to give them. You would use it like:

    
    if($page->createdUser->id != $user->id) {// @note: here you'd also need to add logic to let superadmin and some editor to have access :-)
    // don't allow access
    }
    
    // in a selector
    $userPage = $pages->get("template=members, created_users_id={$user->id}");

     

    @kongondo, is this also useable for pages in the admin? 

    If you did not create that page, you can not see or edit it.

    I tried this, but it only work on the frontend and does not block the edit page.

    // redirect users from pages that are not theirs
    $this->addHookBefore('Page::render'function ($event) {
        $page = $event->object;
     
        if ($page->template == 'admin') {
            if (wire('input')->post->id) {
                $id = wire('input')->post->id;
                //$notices = $id;
                if ($id != wire('user')->id) {
                    wire('session')->redirect(wire('config')->urls->admin . "dashboard/");
                }
            }
        }
     
        if ($page->template == 'basic-page') {
            if ($page->created_users_id != wire('user')->id) {
                wire('session')->redirect(wire('config')->urls->admin . "dashboard/");
            }
        }
    });

    I am trying to block the smart one's that try to access other pages through the get variable.

     

  7. I have the pdf render in a function to keep my template clean.

    On top of the function I do

    // maps
        $images = $page->flightplan_images;
        $image = "";
        foreach ($images as $i){
            $image .= '<img src="' . $i->url . '" uk-image>';
        }

     

    Tried both $pdf->write() with some html with $image and

    $mpdf->WriteHTML() with some html with $image.

     

    All is there except for the images.

    How do I output images in a pdf.

  8. Hello,

    is it possible to render the input field on a frontend template (for loggedin users only).

    I tried this:

    <?php 
    $m = $modules->get('InputfieldLeafletMapMarker');
    $m->render();
    ?>

    This generates errors for empty variables.

    PHP Notice: Trying to get property 'lat' of non-object in ...\InputfieldLeafletMapMarker.module:102
    PHP Warning: Creating default object from empty value in ...\InputfieldLeafletMapMarker.module:102
    PHP Notice: Undefined property: stdClass::$lng in ...\InputfieldLeafletMapMarker.module:103
    PHP Notice: Undefined property: stdClass::$zoom in ...\InputfieldLeafletMapMarker.module:104
    PHP Notice: Undefined property: stdClass::$address in ...\InputfieldLeafletMapMarker.module:105
    PHP Notice: Undefined property: stdClass::$status in ...\InputfieldLeafletMapMarker.module:106
    PHP Notice: Undefined property: stdClass::$status in ...\InputfieldLeafletMapMarker.module:107
    PHP Notice: Undefined property: stdClass::$raw in ...\InputfieldLeafletMapMarker.module:130
  9. I have this module working as it should. 

    When I turn of TracyDebugger I get these errors. Anybody know why this is?

     

    Spoiler

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: count(): Parameter must be an array or an object that implements Countable in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 1770

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

    Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206
    %PDF-1.4 %���� 3 0 obj <> /Contents 4 0 R>> endobj 4 0 obj <> stream x��\]w��}ׯ�G�����T�I�$v�HJNO�>0,3I������.$�b13���/q2�s��~`�y����b�]��k&l��'�ϼb��2�Ѳ0��R�B;��/{��f������bΎ��'g'lS߬7������~��T���X���G���\QŖ�Y8�E��Y������^�}��~PV�P�b�}u܏J�z7:��/RT����6��؎2�jx�Ee ^&� �g������K�^1�%?�ձ�>�f~U3����s�����C�M��Τ/'k9ec�}o�+ghA����=���,�.�)�㦰�m��z7_\��Le=��Pg{�Y���U�5i���3[q�[�����|�����$R�BJ�gI�uI���B�_\՛q%��g�ժf�5�i��U���kxI��Pi��)�/��h�<�P��ݔ�y�i�Ւ�s{,���#�Q%(����~W@��K^鲴�ԅ���������{�q2TCJ��������L%$��~G�xh���?��0�U��? B���I{w@��җ���(�"�Br0��k��E�DŽPG��`4*�=�N��c�P���`4*�=������(� hTV{H/��p,�PB��`4*�=�ҡ�lC Q�Ш���^�Ʋ %D V@�F�7���j<�*�ό�\ +¼�m�7V�JQ� ��c�Vƛ+*&(X���1o;� ���F������&�\ VA��z���x�E���Qy=�mmK���F�����u�%�L�}�8oF}%���v��o>����O�Y�݉�ɮ�aFz����bwM���OoEɌ*;�7����-�k�)��:�/�b�'`u��D]��?C��'�׷��ۧl��ͧ�]J���[ߣ=�Yޟ9~�}�:�R��O��#�BZO��^�9s!���|_����U|��_I�f#�d]�?m�}C`��sb����pvѸ��"��Ro�Nޟ�T���P7S�/����n��������|�����y�J��yԕ�Yzp�Y[�I�on��]W�����p+mb)���8�{�+���lѼ��Koi�tS�.��ƀlJ��lռ(����g3�U W�����u㇕�i<����O#�� of�w� �����Ӄ�b,2Q($�H�6����>&�:�+�Q�G���MVb� /�E�z(P�Ԕ="E���G�X�PX���:���QS����6�����E��"����:���QS����қ���P ��!H��"����:�ރ TA���P���9"{��(Vy�=�X��C�*����)�� )*�"�0oD� �q�(X�����Lƽ#����z��䇻�K[���o���z@�W����|��1.����&�_m?��l!�����̗��l`����Cze ��R&���&~��xQUP�v3o>���~�X���-5�yka��;����ٴ�cn=�����P6�|*�Y}����כ�_�0!g��x�+LAJ�w�μaYYpXћ���_��X��+����Po>�WLÜu������Y���W�z� �[�{_o��K����5ϵx�߬��/�f?]\��o.��z}�a�����S��[��/>�3��j{��;5�u*��D�%�}��|��|M,ӡ�����r�Դ�Ϳ~~؅RU�c�r�by}P�E& ��`�}A��(� hTV{H/t ?손�ޖ�b,2Q($�H�P �eJ���Fe�����D�c��BaE���`�wX���GB�j|@�X�E��"���X́+E�*���z��>xA��b��O����o!K���F����&�E.�?&w\ +¼k�豇U왡�����H~�� %���Ϛ�ϛ�p�<��7�{0�:��W~1pi�"S�yY%.Rjvr{u��ݻy�g��D���� � �o"��K*Y�#ܼ,������E�����c�j\�����%;}�N�����`G/]bo��O��X��M����;�O^��y����P�w�y��TӘz 4��G��;���D��L#��@�Ȁ� ��(� hTV{H/r�!ԼPo�}P�E& ��`��Y�2��+�QY��-<1�+E�X�PX��/��VA���P,=���(Vy�=����@{Py=fm����KQ1�(V�y�[����Qy=f� 4C��r�<d�W!��&@�{XŞ����2�R%v��L}_�K����c����d�^$6�zQ͌��~���z��O���i��zz����<=ǖ��^��|Q�HQM�饆�Yb�(����tL ��4R/6�"h�H`�ITNP ���ڀ��� ��XOA�(��'�0�(���Rñ�D-� hTV{y�OL�O>I#_9��`^�R�1z�a4j� ��vRT�i䓆A^~��b\�J���Q�~p���[���O@W<�aa^���D1A�*hT^��k�P�1AŘF�yp¼k�豇U왡��.O��3� /�Gb1.�}%Q��U?�}���~W�Y!W<�aa^����+A�*hT^��k�P�2�;w\ +¼k�豇U왡��.O_���-}�({"_�ѧ��e�S����M��};/g\�T�!���i�ZG��4�3������NooO��וc�����������q�0{���ÇmOwL� ry�<��� ��@b�B�b�����¡���T��|H$�B���)�yh�k�����B�A�~Rn_ ��X|b�������V�K���Z�csH$e��� rm��1$j�w҇x��t��'��Cr��ha endstream endobj 5 0 obj <> /Contents 6 0 R>> endobj 6 0 obj <> stream x��]]wG}���M� C͗�L ��B���f��-9��������=�U��F��/|�����1m�����P2�R�����������C����əWk���(şG�:�����G��V�"��]m��}K=�����f���,Z_��4R2e��u�9��l\�Շ��r�.�z&���=��g�:��j�7y�> w�}��������7�n\(��Br0���]d5�t��D�#HA!�(��i��(�i��BQ��(V{�%�1��\ +�<>�9�c7�c=� �?x����RT�. �a$`,�P� �둹� F�b��\ ��b7������CQm�C~r�OHU}���/$��_�@���D��!��墌�Z�㻫;�to��Pz&�L�shbB�4F=ؓ�7�|R���˯���gw��>�?�+Q�X]�W��爮�߉���S���X\����"���T�+!��r�3��X.�j�U��r�>�?�cP����OQaP�,W���I>ؓ�T��!=ȑO����B���W� �����e��"��F���ޘ�Ua+�sQ(����c���*hԔ=��9IP>VC��E���f�U`�FT?��C�<�޺Ũ+��>�0��`,�P� ��9h�W�ms�E��"�1 F�=�b��z|$v��3#]�*rZ��y���B������ T���V�(S���|^��F*���bf�L*���6 %t���6��U��~�߯Y�F�L��Ƕx�,֗���f�zz���/ܱz�/qz�٬��O�����������w�А@e{�_r76f�k�7����ո��Y��������/�;� ��*�6 N��;���[b�)��nW�*P�& ��`���JB��C=Q��(V{H���fr��Bf�(P�& ��`����k�CQ��(V{�1��bT�. �a`�^wX���GB��� �j��\ +�<~��0w\ T���u|�@{��B,pQ(���G�"���Q��3�v(�eIxo�\��¼3b���*������N���L� U�Z���� ��� ��$|'�g����/�� HUf�Y�8{�W���غ�v|%�����d� �$��(�M�_ (� _ rc����zjd�5��Br0����6�3�PO�`4���?�هzW�B,0Q($�H=(\K��"��F���ޘ`p4a��0�? 0F�;��FM�#��͒&T�E��"���HsǕ�@[P�Y���1*��0��`,�P� ��9h�����z�\ +¼3b���*����G�JPYn��0��:���iU�ǽ8�@u�[?E�m��L�J`ud$���Y�������wK\95Hu��d*���ƙ�E{�}(+q�4�M�^v��ce9�5�m���w~��D����C��$w~���q6�4�`��y�L ��D��L#�|@a����,E X�b���|@b�+�qv�Z��L ��4R����k�C=Q��(V{�1��"T�. �a`�^wX���GB���P���\ +�<~��0{��؂���:>x�����iV�X��?B0�s�(X���Ȝ �C��`��sQ(��F���k�زC���7�>��3��|-3����'"S�yc#���Wr�ƙ��O�3�q�F>�ވͺ�_ӗ�x�B_��ss�3����g�M�.�}��}s�+����ś8f�#��C��A!VB�DQaP�s���\��,��D��`{H�4v�9fM<�-z�TD�|@Y��]("�@��j�7xcW��Q�E��"�������QS�H(v�$A�X ��A�Gb�=��N��~xU��<>x����-�\ +�<����+B�*h�G�L� \9v�=�0o�L�����-;���xg>�gK����o��:뙪�ŷ^��ӻ�v��T.^���T�xyw�׃��rf�����˟е<�hܛ��#.��2�j(�n��ܬĩ����mU��u)N_�g�բY�_-��;�z�W_�}�q�Y����ϱg�L��O�R�1�l��Ju�,�^��T޶�5�����>�\���7�bP�& ��`���>E X�b���| G�ׇ�����)(��Br0���S���BQ��(V{�1��"T�. �a`�^wX���GB��YV5�z. �A�Gb�=W�UlA�zd<���Ũ+�9>�0��`,�P� ��9h�W�-t�E��"�1 F�=�b��z|d�^�C^���2Q�j�>V=���E�����̤*#k�����Hk���YY�r�I��>�y����U�Z__�_ks���b߯ԫ�|����>!��ԫ��� �/�����kh�%6�hIx�\A�Ah �������(� h�=��%r�>�?�cP����OQa�A� ��>E X�b���1��H�(id,��G��u�UШ){$�E��m��( +�<~��0w\ T���u|�@{�B���x���<����+B�*h�G�L� �W�Y#[<8�0o�L�����-;���q�ze�C^���2Q�Z�>Q=��OD&3�:2���M}=�v�G���n���]<}��Ks}��n�ݟ�� �y.�o�o�s�'{\�W�".џ4��ե8^���ߴ�ny���7��� ����4l 2͆�@9%� �,6��f����O�@���$*'��Cz> �ӕ�4K������� �p ���F��[K��"�'A��x#�7%p�Yd$������5�UШ){$��1��� +�<~�� {.��$Q��U?xt�<[' ��� <�0�}�@�g��7����+Y9o��.��r�E��"�1 F�;�b��z�?�H������zd�����7D�� endstream endobj 7 0 obj <> /Contents 8 0 R>> endobj 8 0 obj <> stream x�՝�n7����L��C�s''���8�7X`��4����I ��ے��b�?[ꙅn�\�ׁ��OFV/?���2��Z�O��>���?޻���{���QǗ��}Ӫ����޿���:ڻ���iH��.�X�W5�Զ�V�Θ�n[��H�o�_]�/��N�s����}�Z~�X]}�>�>訟bfT�P�s�����{����YX�%����Ԍ,�t���F0c0�D���㰄��S'�y�^�n0!/�T���|��$7;���νx�)� ����Z1˵�'^�*j�l ��D�F�Ѩ��dFW� ܆�Ϋ�^s�2��$� ����=Y\y�`����< ��O5W}��ȅ�4�$3�Z�Kf�q�W�ۈ��U`��wB�P�j$3�Z�Kf�qv����yN��ǧ��'��5�O��哬�b�$�\,�;���]�2��O��g�I䘄?���-Ҽo�>���Yh�{3���8�GRsҼf��{A��4�u��9.)�,0_0�w��dk%Z�ʁT�=�/���4�ЩS�������(<����\��q�`�����@L��!iN����q��mx� �5g� �M��+��=Y\y�`�C�V%�>?�L���#:������p����+�mD�x�*�WY��;!N(j���5���� ;�lx��� 'T���yKHk{4�d��Ӭ[�y�d6��$�Oi�t�L�y*�N���$�!,O�߾{�^�.>^��X�����~V�_�W����Ǐ���'�y�~w6����Y���*��b=����m$>��P������m8Bkɽ:�Ӣ��� *R��D�������f�N�m���HI'P��/Z�gL$q�`�����@L��Tr-�����W����y�k�A�)��������{���DKP}~����G.t@8��Ns0�_XW~���d$^� �U�c�N��=��N�qvy܄�`6<{^ņ*��ia}]7�>����,���$붰>I2�׎���z���IX�� ;즁#�~�'���zӂ/���F��#�~x���!=����k���%?֜��S�yNHJ:y��c�`���mx�E!+!T���|�`$������ %�@�1������2�F!��+�^E항�<��UV�-����W����y�k�A�5�$^��9+ݓ�ŕ��9hYɖ���Ts�g��\�ȼ�d���<�� qۨE�xث��'�j�ϣ�y܄�`6<{^ņ*��iq�k�>�O��듬���$�\\�<ɔ���֋zڇ��\_�i`��?��-���-����`����nx���U=���]� �5 �id"�m''$%�:�c�`��|��yI��r �mO�'!� �v���)� ����:1˵�'^�*j�l ��D�F�Ҩ��dFW� ܆�Ϋ�^s�2�1%� ����=Y\y�`����p ��O5W}��ȅ�h�$@�Z�Kf�q�W�ۈ��U`��wB�P�j$@�Z�Kf�qv����yN��ǧ��ow�U}�eW`�d��'I�{���`o��a�ʹ�`��?��-��mZ�e�c�>Q������{$5'�kѶL#Q��1����N��C+�7�H�VR&�He�����L㻝:E[� II'Px�u'f�6!��+�^E항�<���X�.����W����y�k�A�5�$^]4��{2����2����KP}~�����G.t�8�m-G����q�W�ۈ��U`��wB�P��@k���-�qv����yN���'�����4����f���$���& i{��Y��`O���N�z�����\��.�?_��O�,��z]��o��������Poz�����Y��ϔ�>�GR3B�u���G#��q����tr� h-�W�7ZҒ0A�@*۞ȷ6�NPo0��u��Ś����t����ax}�Y�F�xث���5��3�������U�6> /Contents 10 0 R>> endobj 10 0 obj <> stream x��]]oܶ}����m�D!)R��~�"H��-.������ۛ�����m���*��ր_�fr�r�:L����H���(���:��~<�3����{���{��Ш�u���j�e/��{����:ݻ�w�T �o���T�����[�c W���T�o~X������c�R�����ݧ���[u�W�Q�$e��PMY*�㯯�z����Ɨ�Ryo��"�0�����C�����S�maʪU'���xX���~u�%�\�iCe��>K�W�C;�ئ��n���v���+���;��N��JYm�Kݾ4:����rj�Qy��(�ޤn��P���߳�*1e6��J�j�J���P� ������`��������uX��2|���������[�@ U�s�m����g)ۻ�E"oW'��ɔ�S*�i��Y�IM���^�s?Hʚ�������tm�4�l[V��(��/���,˯}�b�Ó�������zyq|�����t�7j�ⲻX�P?w7g������Z�W-|F����_���B��yy�����rZ�������ٍZ}��>��-Ի ��Nm���7�| d��}�L�Xq������n ����߫�wQʪ����� |�m�����4��'h8SԶ��E��0n����R,1q("��X��U�"LD�+�Q���^[X��C�a�|alJ��ġ�Nc��@�h-ch � \��'�1��R,qq(���䣀c���*xԜ=2��+t��a��K\�*�<�±��p�;�o���ٝ Wy�;A���;A&2ם�W�`&ɝ�-\=�N��մ+A��ŕ�W���J�}=�oy%���T���`�+AF:ە��z��>�J�Q�x%����o�����MAP�%&E�p��Ğ9�� x��=�e�=s ��R,1q("��X��%Y�>�W��D��ƀnL�j���8U�y�Q�1~�qt�����K\�*�<��1�P� %�Q8d�WC���š�"Λ0(Ư=�b��z|^W�?��+A��TW�LuWW�Ld�+A���L2Wc'] 2:]��|c��ō�5���F�j=�oy#pރכf�d����3�U�-o՜7���۵�y��`� (��ġ�Nc�b���e�!�@�%j��ŀ7�2��` (��"r8�Ջ��&kه� x��=�ЍI\-����8O> 8Ư;��G��#����=��š�"ʓ��sT�(T���G���D�X��PT�ɏ�.��U�(Y� ;��Z�y'.Eqބ�@1~�qvH��3���s�2�'�@՝���\7��f�x#�].������t.��$瘥oq'�����'�W�N��h����P6�+����g��9�2|���U�jFG�A�YS稉{֌�IL���4V��-��14A��G��#z1P�C�C�R�ŏ~����5Hz1PY��1�W��D��ƀnL�'�qI��CQE�'��W����Q��D3�e��PT��{d����P�� (Y���C:�7�J�{�����G�@�*x��G�L�JnW3�9qq(���&���k��ذC����/K�_�U���g��r���l����>p��Yx�pz���t��?�ϒ���07~^W�Ɵ����m�8��5~�jF?_:�K�K�K� 9b�* r�;��;jxM|�%"C�%S9C5�ыM �&�Y3�aC�1�'�>`��e D�+�Q��dc@7&q��Gr�S�Γ���뎫�Qs��(F�S2���4����=2����L��:V�����f|�!�x���<�±��p�j�/�A��/>�Tvn��B�Tg7���"�����������v��o������3X�u�:�=�����u�g���_����л`�����7��{��֮���y��u�>^�����ٕ��=�ˏ�{7M�(y���}qՌ^޴�7��x� 6(7��KL���4V/*bvc��G��#z1��ٍ��x�mx�KL���4V/J�U�D�+�Q��dc@7&qT�%.Eq�|p�_w\���GF�j��j� \�*�> /Contents 12 0 R>> endobj 12 0 obj <> stream x����R�0F�y�oi��@Y�Z�qe���)�ёb�_��_�R� !�ܛ�{� NDH�&L��번�Q,P|ڽ 4������k�}�`�B�Y?��5��JB!��5�����c^���>���:^��?��Y!y��`7޼Dii<��S��{��C8_��<�� XƚY endstream endobj 1 0 obj <> endobj 13 0 obj <> endobj 14 0 obj <> endobj 15 0 obj <> endobj 16 0 obj <> endobj 17 0 obj <> endobj 2 0 obj <> /ExtGState << /GS1 13 0 R >> >> endobj 18 0 obj << /Producer (��mPDF 5.7.4) /Author (��Dronematica) /CreationDate (20200910213653+02'00') /ModDate (20200910213653+02'00') >> endobj 19 0 obj << /Type /Catalog /Pages 1 0 R /OpenAction [3 0 R /XYZ null null 1] /PageLayout /OneColumn >> endobj xref 0 20 0000000000 65535 f 0000014317 00000 n 0000014889 00000 n 0000000015 00000 n 0000000223 00000 n 0000003339 00000 n 0000003547 00000 n 0000006915 00000 n 0000007123 00000 n 0000010289 00000 n 0000010498 00000 n 0000013757 00000 n 0000013967 00000 n 0000014431 00000 n 0000014493 00000 n 0000014590 00000 n 0000014692 00000 n 0000014791 00000 n 0000015040 00000 n 0000015203 00000 n trailer << /Size 20 /Root 19 0 R /Info 18 0 R /ID [ ] >> startxref 15313 %%EOF

     

     

  10. Hello,

    I have a template that has 4 possible children. Therefor I can not use the auto child page name.

    I create a new page with a button on the frontend that uses this format:

    page/add/?parent_id=1078&template_id=87

    I tried adding &title=xxx&name=xxx to it but that does not work.

    Also tried some hooks that also did not work.

     

    How can I automatically fill title and name upon creation of a child page?

  11. @Jan Romero, thanks. I found the same issue. I renamed that div as I already use content for template strategy. I made this

    <div id="live-search"></div>

    Yes, I changed the % to ~, not sure it that is correct either. If using % it will also give me a lot of unrelated results as it searches in both title and body.

     Currently I trying to fix that the div with results does not grow downwards but upwards making that you can't see the results.

  12. @Jan Romero, I tried your code on a website.

    I do see the url change on typing in the searchbox, tracy also shows the search term. If I press enter I get to the search page with the correct results.

    I just miss the live search part.

     

    My setup is a _main.php with the search form and the javascript code.

    A search template with url /search/ with the code for the actual search.

    If have set it up on this test site.

    meibergen.webhoes.nl

    Do you have any clue why I don't have the live search?

     

  13. Hello,

     I want to add an item to the user navigation menu. In the picture below I added it (My studbooks) in the core files. It is hookable, but I can't get the hook to work.

    image.thumb.png.f2ea75e5c419a6a82b6045bd0a49c477.png

     

    Ready.php

    // /* to figure out */
    $this->addHookAfter('AdminThemeFramework::getUserNavArray', function(HookEvent $event) {
    // Get the object the event occurred on, if needed
    $AdminThemeFramework = $event->object;
     
    $AdminThemeFramework = $navArray();
     
    // An 'after' hook can retrieve and/or modify the return value
    $return = $event->return;
     
    /* Your code here, perhaps modifying the return value */
    $navArray[] = array(
    'url' => '/my-studbooks/',
    'title' => $this->_('My studbooks'),
    'target' => '_top',
    'icon' => 'eye',
    );
     
    // Populate back return value, if you have modified it
    $event->return = $return;
    });

    What should I change to get it working from ready.php

     

×
×
  • Create New...