function socialcalc_default_edit in Sheetnode 6
Same name and namespace in other branches
- 5 socialcalc.inc \socialcalc_default_edit()
- 7.2 socialcalc.inc \socialcalc_default_edit()
- 7 socialcalc.inc \socialcalc_default_edit()
7 calls to socialcalc_default_edit()
- sheetnode_html_import in modules/
sheetnode_html/ sheetnode_html.module - API function to import a URL.
- sheetnode_text_import in modules/
sheetnode_text/ sheetnode_text.module - API function to import a URL.
- sheetnode_update_6002 in ./
sheetnode.install - Implementation of hook_update_N().
- socialcalc_parse in ./
socialcalc.inc - socialcalc_parse_csv in ./
socialcalc.inc
File
- ./
socialcalc.inc, line 521 - SocialCalc manipulation functions Translated from socialcalc-3.js and companion files
Code
function socialcalc_default_edit($sheet = array()) {
return array(
'rowpanes' => array(
'first' => 1,
'last' => isset($sheet['attribs']['lastrow']) ? $sheet['attribs']['lastrow'] : 1,
),
'colpanes' => array(
'first' => 1,
'last' => isset($sheet['attribs']['lastcol']) ? $sheet['attribs']['lastcol'] : 1,
),
'ecell' => array(
'coord' => 'A1',
),
);
}