Re: Fancy File Delete

2007-05-10 Thread Joshua McFarren

Check out Marco's reply to my similar question here. Use the
beforeDelete method in your model:

http://groups.google.com/group/cake-php/browse_thread/thread/fcf9368c5e7e4b86/b97aabc8e020edfc

Second to last in the thread.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Fancy File Delete

2007-05-08 Thread robechar

Whoops, this is actually a component, not a helper.  My bad!

On May 8, 10:32 am, robechar <[EMAIL PROTECTED]> wrote:
> Your model name "File" might be stepping on the toes of the "File"
> helper, but it has many of the functions you would probably want to
> use.
>
> http://api.cakephp.org/class_file.html
>
> The delete() function in there is what you are looking for, but check
> out the other functions as well as they will probably be useful for
> other things you are trying to do with your files.
>
> On May 8, 9:17 am, Enchy <[EMAIL PROTECTED]> wrote:
>
> > Hi
>
> > I have made a table called files.  its for a uploader .
> > You upload the files and details about the files get stored in
> > database.
>
> > The name of file gets stored in column "name" in files table
> > The files are stored in a directory called files
>
> > I would like to know what I add to this function to delete the file.
> > Is there a built in function in cakephp for this or should I just use
> > unlink?
>
> >   function delete($id)
> > {
> > $this->File->del($id);
> > $this->redirect("/docs.php?PageID=$pageid");
>
> > }
>
> > Thanks
> > L


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Fancy File Delete

2007-05-08 Thread robechar

Your model name "File" might be stepping on the toes of the "File"
helper, but it has many of the functions you would probably want to
use.

http://api.cakephp.org/class_file.html

The delete() function in there is what you are looking for, but check
out the other functions as well as they will probably be useful for
other things you are trying to do with your files.



On May 8, 9:17 am, Enchy <[EMAIL PROTECTED]> wrote:
> Hi
>
> I have made a table called files.  its for a uploader .
> You upload the files and details about the files get stored in
> database.
>
> The name of file gets stored in column "name" in files table
> The files are stored in a directory called files
>
> I would like to know what I add to this function to delete the file.
> Is there a built in function in cakephp for this or should I just use
> unlink?
>
>   function delete($id)
> {
> $this->File->del($id);
> $this->redirect("/docs.php?PageID=$pageid");
>
> }
>
> Thanks
> L


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Fancy File Delete

2007-05-08 Thread Enchy

Hi

I have made a table called files.  its for a uploader .
You upload the files and details about the files get stored in
database.

The name of file gets stored in column "name" in files table
The files are stored in a directory called files

I would like to know what I add to this function to delete the file.
Is there a built in function in cakephp for this or should I just use
unlink?

  function delete($id)
{
$this->File->del($id);
$this->redirect("/docs.php?PageID=$pageid");

}

Thanks
L


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---