Market Leader Brookins Consulting blogs about the most exciting eZ Publish blog posts.

You need to be logged in to get access to the forums. You can do so here

Hello, in this post I will show how to perform a simple string search and replace within an eZ Publish template variable.

Many new users to eZ Publish incorrectly think there is no search and replace operator within the eZ Publish template language...

Consider the following examples. I find them to be simpler and faster to use together than to mess with yet another custom operator or wrap_operator function call.

First you can do this in any template. Here is an example. Put this code into a template file:

{def $strDataInput='09/17/2011' $strData=$strDataInput|explode('/')|implode('.')} {$strDataInput}{$strData}{* $strData will output '09.17.2011' *}

This also works the same way in php. Here is an example:

<?php
$input = 'abcd efg hijk lmnop qrs tuv wxyz';
$output = implode( '-', explode( ' ', $input ) );

print_r( $input . "\n\n");
print_r( $output . "\n\n");
?>

I hope this helps others looking to avoid extra dependencies and complexities without giving up much needed functionality :)

Cheers,

Heath

Brookins Consulting

 

References

[0] http://doc.ez.no/eZ-Publish/Technical-manual/3.9/Reference/Template-operators/Strings/str_replace/(language)/eng-GB

[1] http://doc.ez.no/eZ-Publish/Technical-manual/4.x/Reference/Template-operators/Arrays/implode/Convert-spaces-in-text-to-dashes/(language)/eng-GB

[2] http://doc.ez.no/eZ-Publish/Technical-manual/4.x/Reference/Template-operators/replacement-operator/Re-replacement-operator/(language)/eng-GB

[3] http://doc.ez.no/eZ-Publish/Technical-manual/4.x/Reference/Template-operators/Strings/explode/Explode-Implode-as-string-replacement/(language)/eng-GB

[4] http://doc.ez.no/eZ-Publish/Technical-manual/4.x/Reference/Template-operators/Arrays/implode/(language)/eng-GB

[5] http://doc.ez.no/eZ-Publish/Technical-manual/4.x/Reference/Template-operators/Strings/explode

[6] http://php.net/implode

[7] http://php.net/explode

Archive

Mon Tue Wed Thu Fri Sat Sun
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31    
Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 18 2025 00:07:19
Script start
Timing: Jan 18 2025 00:07:19
Module start 'layout'
Timing: Jan 18 2025 00:07:19
Module start 'content'
Timing: Jan 18 2025 00:07:19
Module end 'content'
Timing: Jan 18 2025 00:07:19
Script end

Main resources:

Total runtime0.0130 sec
Peak memory usage2,048.0000 KB
Database Queries3

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0049 589.9297152.6094
Module start 'layout' 0.00490.0025 742.539139.8984
Module start 'content' 0.00740.0038 782.437596.2031
Module end 'content' 0.01120.0018 878.640638.2891
Script end 0.0130  916.9297 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.002317.5388140.0002
Check MTime0.00107.8820140.0001
Mysql Total
Database connection0.00054.120310.0005
Mysqli_queries0.002216.645930.0007
Looping result0.00000.084210.0000
Template Total0.001410.910.0014
Template load0.00086.001210.0008
Template processing0.00064.910710.0006
Override
Cache load0.00053.913610.0005
General
dbfile0.00021.895580.0000
String conversion0.00000.053140.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 1
 Number of unique templates used: 1

Time used to render debug report: 0.0001 secs