How to save from PHP all the fields of an eZURL attribute?

Author Message

Massimiliano Bariola

Wednesday 02 November 2005 6:35:44 am

Hi, I am trying to correctly save the link title and link URL into an eZ object I build in my extension's PHP code.

So far, I have only been able to save the title part; I am unable to save the url.

For those who have access to it, I am basically using the same technique suggested on "learning eZ Publish 3" book, pages 137 - 138.

$linkAttributes=$attribs[$i]->Attributes();
//this gets saved
$attribs[$i]->setAttribute('data_text', $tb_title);
// I try to extract this to delve deeper into the contentobjectattribute's structure, but I think there must be an easier way ....
$oa=$attribs[$i]->Attribute('object');        
$odm=$oa->dataMap();
// some code should go here involving $odm's content, but I think there should be an esier way ....            
$attribs[$i]->store();

Björn Dieding@xrow.de

Wednesday 02 November 2005 11:16:18 am

			if ( is_array( $data) )
			{
				//set data and text
			 	$contentObjectAttribute->setAttribute( 'data_text', $data['text'] );
			 	$contentObjectAttribute->setContent( $data['url'] );
			}
			else 
			{
            	$contentObjectAttribute->setContent( $data );
			}
			$contentObjectAttribute->store();

I guess this helps...

Looking for a new job? http://www.xrow.com/xrow-GmbH/Jobs
Looking for hosting? http://hostingezpublish.com
-----------------------------------------------------------------------------
GMT +01:00 Hannover, Germany
Web: http://www.xrow.com/

Massimiliano Bariola

Thursday 03 November 2005 3:27:17 am

Great! that's what I was trying to achieve. thank you.

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 11:31:52
Script start
Timing: Jan 18 2025 11:31:52
Module start 'layout'
Timing: Jan 18 2025 11:31:52
Module start 'content'
Timing: Jan 18 2025 11:31:52
Module end 'content'
Timing: Jan 18 2025 11:31:52
Script end

Main resources:

Total runtime0.0206 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.0089 589.6172152.6563
Module start 'layout' 0.00890.0028 742.273439.5078
Module start 'content' 0.01170.0063 781.781389.4297
Module end 'content' 0.01800.0026 871.210934.3047
Script end 0.0205  905.5156 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.003114.9511140.0002
Check MTime0.00136.1171140.0001
Mysql Total
Database connection0.00146.800410.0014
Mysqli_queries0.003215.592730.0011
Looping result0.00000.106510.0000
Template Total0.00199.010.0019
Template load0.00094.459910.0009
Template processing0.00094.566410.0009
Override
Cache load0.00062.953210.0006
General
dbfile0.00031.565880.0000
String conversion0.00000.057940.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