DrupalBin
Submit Code
About
Recent Posts
Code
18 min 48 sec
ago
Fix for Code
1 hour 32 min
ago
Code
1 hour 33 min
ago
example array
1 hour 44 min
ago
more
Tags
CCK
fapi
javascript
jquery
menu
module
Panels
simpletest
template.php
test
theme
views
more tags
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Create new account
Request new password
Log in using OpenID
Cancel OpenID login
Home
openid_ax
best way of inserting multiple rows..
August 7, 2008 - 6:08am —
chunmun
global
$user
;
$copySrc
=
db_query
(
"SELECT * FROM {openid_ax_values} WHERE uid='%d' AND persona_id='%d'"
,
$user
->
uid
,
$form_state
[
'values'
]
[
'from_personas'
]
)
;
openid_ax
Read more
form_state rebuild
July 12, 2008 - 4:44pm —
chunmun
function
openid_ax_persona_form
(
&
$form_state
,
$persona_id
=
0
)
{
global
$user
;
$form
=
array
(
)
;
$identifiers
=
db_query
(
"SELECT * FROM {openid_ax_attributes}"
)
;
openid_ax
Read more
Fix for openid_ax_persona_form
July 12, 2008 - 3:58pm — Anonymous
this is in openid_ax.module::
$items
[
'user/%user/persona'
]
=
array
(
'title'
=>
'OpenID AX Personas'
,
'page callback'
=>
'openid_ax_persona'
,
'access callback'
=>
TRUE
,
openid_ax
Read more
openid_ax_persona_form
July 12, 2008 - 3:53pm —
chunmun
this is in openid_ax.module::
$items
[
'user/%user/persona'
]
=
array
(
'title'
=>
'OpenID AX Personas'
,
'page callback'
=>
'openid_ax_persona'
,
'access callback'
=>
TRUE
,
openid_ax
Read more
openid_ax_persona_form_submit_select_persona
July 12, 2008 - 10:21am —
chunmun
<?php
// $Id: openid_ax.pages.inc,v 1.8 2008/07/04 05:44:58 anshuprateek Exp $
/**
* @file
* Page callbacks for OpenID AX.
*/
/**
* Primary endpoint callback - serves op_endpoint.
*
openid_ax
Read more
openid_ax_persona_form
June 30, 2008 - 12:49am — Anonymous
function
openid_ax_persona_form
(
)
{
global
$user
;
$form
=
array
(
)
;
$identifiers
=
db_query
(
"SELECT * FROM {openid_ax_attributes}"
)
;
openid_ax
Read more
form submission
June 30, 2008 - 12:41am — Anonymous
<form action=
"/anshu/drupal/op/?q=user/1/persona"
accept-charset=
"UTF-8"
method=
"post"
id=
"openid-ax-persona-form"
>
<div><div
class
=
"form-item"
id=
"edit-1-wrapper"
>
openid_ax
Read more
how do I access the variables in the submit of this form?
June 29, 2008 - 3:18pm —
chunmun
function
openid_ax_persona_form
(
)
{
global
$user
;
$form
=
array
(
)
;
$identifiers
=
db_query
(
"SELECT * FROM {openid_ax_attributes}"
)
;
openid_ax
Read more
user/%uuers/persona not created
June 29, 2008 - 6:01am —
chunmun
<?php
// $Id$
/**
* @file Openid Attribute Exchange implementation for drupal
*/
/**
* Implementation ofhook_menu()
*/
function
openid_ax_menu
(
)
{
$items
[
'openid/ax'
]
=
array
(
openid_ax
Read more
menu not created
June 29, 2008 - 5:27am — Anonymous
$items
[
'user/%user/persona'
]
=
array
(
'title'
=>
'OpenID Attribute Exchange Personas'
,
'page callback'
=>
'openid_ax_persona'
,
'access callback'
=>
TRUE
,
openid_ax
Read more