Rajat
Rajat

Reputation: 323

How to create a new file and dump content in it in Joomla 2.5?

I know JFile and write function in Joomla 1.6 but is there a similar function for Joomla 2.5 too?? I didn' t get anything in Joomla docs.

Upvotes: 0

Views: 369

Answers (2)

Lodder
Lodder

Reputation: 19733

you can import it using the following code snippet:

jimport( 'joomla.filesystem.file' );

Upvotes: 0

Craig
Craig

Reputation: 9330

Yes - it's there.

You can see it in /libraries/joomla/filesystem/file.php

Upvotes: 2

Related Questions