Lines Matching refs:ctx
19 $ctx = new context;
20 $ctx->comment_preview = array();
21 $ctx->comment_preview[0] = 1;
22 $ctx->comment_preview[1] = 2;
23 var_dump($ctx->comment_preview);
28 $ctx->comment_preview = $comment_preview;
29 var_dump($ctx->comment_preview);
31 $ctx->comment_preview = new ArrayObject();
32 $ctx->comment_preview[0] = 1;
33 $ctx->comment_preview[1] = 2;
34 var_dump($ctx->comment_preview);