Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3313710
copy.inc
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
copy.inc
View Options
<
?
php
/*
+-----------------------------------------------------------------------+
| program/steps/addressbook/copy.inc |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2007, RoundCube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |
| Copy a contact record from one direcotry to another |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
+-----------------------------------------------------------------------+
$Id: copy.inc 471 2007-02-09 21:25:50Z thomasb $
*/
// only process ajax requests
if
(
!$
OUTPUT
-
>
ajax_call
)
return
;
$
cid
=
get_input_value
(
'
_cid
'
,
RCUBE_INPUT_POST
);
$
target
=
get_input_value
(
'
_to
'
,
RCUBE_INPUT_POST
);
if
(
$
cid
&&
preg_match
(
'
/
^
[
a
-
z0
-
9
\
-
_
=
]
+
(,[
a
-
z0
-
9
\
-
_
=
]
+
)
*
$
/
i
'
,
$
cid
)
&&
strlen
(
$
target
)
&&
$
target
!
==
$
source
)
{
$
success
=
0
;
$
TARGET
=
$
RCMAIL
-
>
get_address_book
(
$
target
);
if
(
$
TARGET
&&
$
TARGET
-
>
ready
&&
!$
TARGET
-
>
readonly
)
{
$
arr_cids
=
split
(
'
,
'
,
$
cid
);
foreach
(
$
arr_cids
as
$
cid
)
{
$
plugin
=
$
RCMAIL
-
>
plugins
-
>
exec_hook
(
'
create_contact
'
,
array
(
'
record
'
=
>
$
CONTACTS
-
>
get_record
(
$
cid
,
true
),
'
source
'
=
>
$
target
));
$
a_record
=
$
plugin
[
'
record
'
];
if
(
!$
plugin
[
'
abort
'
])
if
(
$
TARGET
-
>
insert
(
$
a_record
,
true
))
$
success
++
;
}
}
if
(
$
success
==
0
)
$
OUTPUT
-
>
show_message
(
'
copyerror
'
,
'
error
'
);
else
$
OUTPUT
-
>
show_message
(
'
copysuccess
'
,
'
notice
'
,
array
(
'
nr
'
=
>
$
success
));
// close connection to second address directory
$
TARGET
-
>
close
();
}
// send response
$
OUTPUT
-
>
send
();
?
>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Apr 9, 2:36 PM (1 d, 2 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
531431
Default Alt Text
copy.inc (2 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment