FOF30\Controller\DataController::copy PHP Метод

copy() публичный Метод

Duplicates selected items
public copy ( ) : void
Результат void
    public function copy()
    {
        // CSRF prevention
        $this->csrfProtection();
        $model = $this->getModel()->savestate(false);
        $ids = $this->getIDsFromRequest($model, true);
        $error = null;
        try {
            $status = true;
            foreach ($ids as $id) {
                $model->find($id);
                $model->copy();
            }
        } catch (\Exception $e) {
            $status = false;
            $error = $e->getMessage();
        }
        // Redirect
        if ($customURL = $this->input->getBase64('returnurl', '')) {
            $customURL = base64_decode($customURL);
        }
        $url = !empty($customURL) ? $customURL : 'index.php?option=' . $this->container->componentName . '&view=' . $this->container->inflector->pluralize($this->view) . $this->getItemidURLSuffix();
        if (!$status) {
            $this->setRedirect($url, $error, 'error');
        } else {
            $textKey = strtoupper($this->container->componentName . '_LBL_' . $this->container->inflector->singularize($this->view) . '_COPIED');
            $this->setRedirect($url, \JText::_($textKey));
        }
    }