/** * Open the AutoCode for edit. * * @param EcrProjectAutocode $AutoCode The AutoCode * * @return void */ public function edit(EcrProjectAutocode $AutoCode) { /* Array with required fields */ $requireds = array(); $requireds[] = EcrHtmlSelect::scope($this->scope); echo '<input type="hidden" name="element" value="' . $this->element . '" />'; /* Draws an input box for a name field */ $requireds[] = EcrHtmlSelect::name($this->element, jgettext('Table')); $tableFields = EcrTableHelper::getTableColumns($this->element); echo '<br />'; $key = $AutoCode->getKey() . '.row'; if (array_key_exists($key, $AutoCode->fields)) { $acFields = $AutoCode->fields[$key]; } else { $acFields = array(); } echo '<div style="background-color: #f3fbe6;">Header</div>'; echo '<table>'; echo '<tr>'; echo '<th>' . jgettext('Field') . '</th>'; echo '<th>' . jgettext('Label') . '</th>'; echo '<th>' . jgettext('Input type') . '</th>'; echo '</tr>'; foreach ($tableFields as $name => $tableField) { if (array_key_exists($name, $acFields)) { //-- Autocode present $label = $acFields[$name]->label; $inputType = $acFields[$name]->inputType; $width = $acFields[$name]->width; } else { //-- New field $label = $tableField->Field; $inputType = 'text'; $width = 0; } echo '<tr>'; echo '<th>'; echo $name; echo '</th>'; echo '<td>'; echo '<input type="text" name="field[' . $name . '][label]" value="' . $label . '" />'; echo '</td>'; echo '<td>'; echo '<select name="field[' . $name . '][input_type]">'; $selected = $inputType == 'text' ? ' selected="selected"' : ''; echo '<option value="text"' . $selected . '><text></option>'; $selected = $inputType == 'hidden' ? ' selected="selected"' : ''; echo '<option value="hidden"' . $selected . '><hidden></option>'; $selected = $inputType == 'category' ? ' selected="selected"' : ''; echo '<option value="category"' . $selected . '>Catergory select</option>'; echo '</select>'; echo '</td>'; echo '</tr>'; } //foreach echo '</table>'; /* Draws the submit button */ EcrHtmlButton::autoCode($requireds); }
/** * Get insert options. * * @return void */ public function getOptions() { EcrHtmlSelect::scope(); EcrHtmlSelect::name(); EcrHtmlOptions::logging(); $requireds = array('element_name', 'element_scope'); EcrHtmlButton::submitParts($requireds); }
/** * Open the part for edit. * * @param EcrProjectAutocode $AutoCode TheAutocode * * @return void */ public function edit(EcrProjectAutocode $AutoCode) { $var_scope = $AutoCode->options['varscope']; /* Array with required fields */ $requireds = array(); $requireds[] = EcrHtmlSelect::scope($this->scope); echo '<input type="hidden" name="element" value="' . $this->element . '" />'; /* Draws an input box for a name field */ $requireds[] = EcrHtmlSelect::name($this->element, jgettext('Table')); echo '<strong>Var Scope:</strong><br />'; foreach ($this->varScopes as $vScope) { $checked = $vScope == $var_scope ? ' checked="checked"' : ''; echo '<input type="radio" name="var_scope" value="' . $vScope . '"' . ' id="vscope-' . $vScope . '"' . $checked . '> <label for="vscope-' . $vScope . '">' . $vScope . '</label><br />'; } //foreach $tableFields = EcrTableHelper::getTableColumns($this->element); $acFields = $AutoCode->fields[$AutoCode->getKey() . '.var']; echo '<table>'; echo '<tr>'; echo '<th>' . jgettext('Field') . '</th>'; echo '<th>' . jgettext('Label') . '</th>'; echo '</tr>'; foreach ($tableFields as $name => $tableField) { if (array_key_exists($name, $acFields)) { //-- Autocode present $value = $acFields[$name]->label; } else { //-- New field $value = $tableField[$name]->field; } echo '<tr>'; echo '<th>'; echo '<input type="hidden" name="field[' . $name . '][name]" value="' . $name . '" />'; echo $name; echo '</th>'; echo '<td>'; echo '<input type="text" name="field[' . $name . '][label]" value="' . $value . '" />'; echo '</td>'; echo '</tr>'; } //foreach echo '</table>'; /* Draws the submit button */ EcrHtmlButton::autoCode($requireds); }
/** * Edit the AutoCode. * * @param object $AutoCode The AutoCode * * @return boolean */ public function edit($AutoCode) { $input = JFactory::getApplication()->input; EcrHtmlSelect::scope($this->_scope); echo '<input type="hidden" name="element" value="' . $this->_element . '" />'; /* Draws an input box for a name field */ EcrHtmlSelect::name($this->_element, jgettext('Table')); $ecr_project = $input->get('ecr_project'); $element_name = $input->get('element'); $table_name = $input->get('table_name'); //$req_table_fields = JxRequest::getVar('table_fields', array()); //$req_table_fields_edits = JxRequest::getVar('table_fields_edits', array()); //$req_table_fields_types = JxRequest::getVar('table_fields_types', array()); if (!$table_name) { $table_name = $element_name; } if (!$table_name) { echo 'No table given'; return false; } $basePath = $this->_scope == 'admin' ? JPATH_ADMINISTRATOR : JPATH_SITE; $basePath .= DS . 'components' . DS . $ecr_project . DS . 'views' . DS . $table_name; if (!JFolder::exists($basePath)) { JFactory::getApplication()->enqueueMessage(jgettext('View not found'), 'error'); return false; } $key = '##ECR_OPTIONS##'; $this->show_tablefields($table_name, $AutoCode->fields[$key]); EcrHtmlButton::submitParts(); }
/** * Open the AutoCode for edit. * * @param EcrProjectAutocode $AutoCode The AutoCode * * @return void */ public function edit(EcrProjectAutocode $AutoCode) { JFactory::getApplication()->enqueueMessage(__METHOD__ . ' not finished', 'warning'); /* Array with required fields */ $requireds = array(); $requireds[] = EcrHtmlSelect::scope($this->scope); echo '<input type="hidden" name="element" value="' . $this->element . '" />'; /* Draws an input box for a name field */ $requireds[] = EcrHtmlSelect::name($this->element, jgettext('Table')); $tableFields = EcrTableHelper::getTableColumns($this->element); $elements = array('header', 'cell'); echo '<br />'; /* * Header */ $key = $AutoCode->getKey() . '.header'; if (array_key_exists($key, $AutoCode->fields)) { $acFields = $AutoCode->fields[$key]; } else { $acFields = array(); } echo '<div style="background-color: #f3fbe6;">Header</div>'; echo '<table>'; echo '<tr>'; echo '<th>' . jgettext('Field') . '</th>'; echo '<th>' . jgettext('Label') . '</th>'; echo '<th>' . jgettext('Display') . '</th>'; echo '<th>' . jgettext('Width') . '</th>'; echo '</tr>'; foreach ($tableFields as $name => $tableField) { if (array_key_exists($name, $acFields)) { //-- Autocode present $label = $acFields[$name]->label; $display = $acFields[$name]->display; $width = $acFields[$name]->width; } else { //-- New field $label = $tableField->Field; $display = 'on'; $width = 0; } echo '<tr>'; echo '<th>'; echo $name; echo '</th>'; echo '<td>'; echo '<input type="text" name="field[header][' . $name . '][label]" value="' . $label . '" />'; echo '</td>'; echo '<td>'; echo '<select name="field[header][' . $name . '][display]">'; $selected = $display == 'on' ? ' selected="selected"' : ''; echo '<option value="on"' . $selected . '>' . jgettext('On') . '</option>'; $selected = $display == 'off' ? ' selected="selected"' : ''; echo '<option value="off"' . $selected . '>' . jgettext('Off') . '</option>'; echo '</select>'; echo '</td>'; echo '<td>'; echo '<input type="text" name="field[header][' . $name . '][width]" value="' . $width . '" />'; echo '</td>'; echo '</tr>'; } //foreach echo '</table>'; /* * Cell */ $key = $AutoCode->getKey() . '.cell'; if (array_key_exists($key, $AutoCode->fields)) { $acFields = $AutoCode->fields[$key]; } else { $acFields = array(); } echo '<div style="background-color: #f3fbe6;">Cell</div>'; echo '<table>'; echo '<tr>'; echo '<th>' . jgettext('Field') . '</th>'; // echo '<th>'.jgettext('Label').'</th>'; echo '</tr>'; foreach ($tableFields as $name => $tableField) { if (array_key_exists($name, $acFields)) { //-- Autocode present $value = $acFields[$name]->label; } else { //-- New field $value = $tableField->Field; } echo '<tr>'; echo '<th>'; echo $name; echo '<input type="hidden" name="field[cell][' . $name . '][name]" value="' . $name . '" />'; echo '</th>'; echo '</tr>'; } //foreach echo '</table>'; /* Draws the submit button */ EcrHtmlButton::autoCode($requireds); }
/** * Edit the AutoCode. * * @param object $AutoCode The AutoCode * * @return boolean */ public function edit($AutoCode) { /* Array with required fields */ $requireds = array(); $requireds[] = EcrHtmlSelect::scope($this->_scope); echo '<input type="hidden" name="element" value="' . $this->_element . '" />'; /* Draws an input box for a name field */ $requireds[] = EcrHtmlSelect::name($this->_element, jgettext('Table')); // JLoader::import('helpers.autocode', JPATH_COMPONENT); // $AutoCode = new EcrProjectAutocode; $ecr_project = $input->get('ecr_project'); $element_name = $input->get('element'); $table_name = $input->get('table_name'); if (!$table_name) { $table_name = $element_name; } //$req_table_fields = JxRequest::getVar('table_fields', array()); //$req_table_fields_edits = JxRequest::getVar('table_fields_edits', array()); //$req_table_fields_types = JxRequest::getVar('table_fields_types', array()); if (!$table_name) { JFactory::getApplication()->enqueueMessage(jgettext('No table given'), 'error'); return false; } if (!($scope = $input->get('scope'))) { JFactory::getApplication()->enqueueMessage(jgettext('No scope given'), 'error'); return false; } $basePath = $scope == 'admin' ? JPATH_ADMINISTRATOR : JPATH_SITE; $basePath .= DS . 'components' . DS . $ecr_project . DS . 'views' . DS . $table_name . 's'; if (!JFolder::exists($basePath)) { JFactory::getApplication()->enqueueMessage(jgettext('View not found'), 'error'); return false; } $fileList = JFolder::files($basePath, '.', true, true); $fields = array(); if (count($fileList)) { foreach ($fileList as $fileName) { $file = new stdClass(); $file->path = str_replace(JPATH_ROOT . DS, '', $fileName); $file->autoCodes = $AutoCode->getContents(JFile::read($fileName)); foreach ($file->autoCodes as $key => $content) { $fields[$key] = $AutoCode->getFields($this->patterns[$key], $content, array($this->keys[$key])); } //foreach } //foreach } $selecteds = isset($fields['##ECR_VIEW1_TMPL1_THS##']) ? $fields['##ECR_VIEW1_TMPL1_THS##'] : array(array()); $key = key($this->keys); if (isset($AutoCode->fields[$key]) && count($AutoCode->fields[$key])) { $selecteds = $AutoCode->fields[$key]; } $this->show_tablefields($table_name, $selecteds); EcrHtmlButton::submitParts(); }
/** * Open the part for edit. * * @param object $AutoCode The AutoCode * * @return void */ public function edit($AutoCode) { $var_scope = $AutoCode->options['varScope']; /* Array with required fields */ $requireds = array(); $requireds[] = EcrHtmlSelect::scope($this->_scope); echo '<input type="hidden" name="element" value="' . $this->_element . '" />'; /* Draws an input box for a name field */ $requireds[] = EcrHtmlSelect::name($this->_element, jgettext('Table')); echo '<strong>Var Scope:</strong><br />'; foreach ($this->_varScopes as $vScope) { $checked = $vScope == $var_scope ? ' checked="checked"' : ''; echo '<input type="radio" name="var_scope" value="' . $vScope . '" id="vscope-' . $vScope . '"' . $checked . '> <label for="vscope-' . $vScope . '">' . $vScope . '</label><br />'; } //foreach /* Draws the submit button */ EcrHtmlButton::submitParts($requireds); }