when you feel that the frameworks do not have the scope of what you need [closed]
I am reviewing my code publicly, looking for:
community evaluation.
Advice, Criticism, even improvements.
but before posting I want you to know:
which is a complete, extensive project and I do not know how to catalog it in the world of programming.
So the first question is how to publish it to reach the goals described above.
<?php
class CORE {
public static $ObjClass;
public static $ObjClassP;
public static $ObjClassInst;
public static $ObjClassInstP;
public static $ObjSiS;
public function __construct() {
require_once 'const/Security.php';
require_once 'const/Constant.php';
require_once 'class/ClassManager.php';
$this->AUTOLOAD = new ClassManager();
$this->AUTOLOAD->LoadClass();
foreach (self::$ObjClass as $key => $Class) {
require_once $Class;
}
$this->AUTOLOAD->ClassPack();
self::$ObjClassInst['Generic']['APPMANAGER']->RunInit();
}
public function __destruct() {
self::$ObjClassInst['Generic']['APPMANAGER']->RunClose();
}
public function Main() {
self::$ObjClassInst['MVC']['CONTENTMANAGER']->GetContent();
}
}
php object-oriented modules
New contributor
closed as off-topic by Mast, 200_success, mdfst13, rolfl♦ Dec 29 '18 at 21:51
- This question does not appear to be a code review request within the scope defined in the help center. Please see the FAQ about off-topic questions.
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I am reviewing my code publicly, looking for:
community evaluation.
Advice, Criticism, even improvements.
but before posting I want you to know:
which is a complete, extensive project and I do not know how to catalog it in the world of programming.
So the first question is how to publish it to reach the goals described above.
<?php
class CORE {
public static $ObjClass;
public static $ObjClassP;
public static $ObjClassInst;
public static $ObjClassInstP;
public static $ObjSiS;
public function __construct() {
require_once 'const/Security.php';
require_once 'const/Constant.php';
require_once 'class/ClassManager.php';
$this->AUTOLOAD = new ClassManager();
$this->AUTOLOAD->LoadClass();
foreach (self::$ObjClass as $key => $Class) {
require_once $Class;
}
$this->AUTOLOAD->ClassPack();
self::$ObjClassInst['Generic']['APPMANAGER']->RunInit();
}
public function __destruct() {
self::$ObjClassInst['Generic']['APPMANAGER']->RunClose();
}
public function Main() {
self::$ObjClassInst['MVC']['CONTENTMANAGER']->GetContent();
}
}
php object-oriented modules
New contributor
closed as off-topic by Mast, 200_success, mdfst13, rolfl♦ Dec 29 '18 at 21:51
- This question does not appear to be a code review request within the scope defined in the help center. Please see the FAQ about off-topic questions.
If this question can be reworded to fit the rules in the help center, please edit the question.
I'm voting to close this question as off-topic because it is not about reviewing the code, but it is asking about how to ask a more in-detail question. Please just post the code you want reviewed. Note that on Code Review we don't provide feedback on the pro's and con's of different concepts or strategies that are not implemented in the code being reviewed.
– rolfl♦
Dec 29 '18 at 21:51
@rolf in stack exchange is there a page that can be placed questions like this?
– Francisco Núñez
2 days ago
add a comment |
I am reviewing my code publicly, looking for:
community evaluation.
Advice, Criticism, even improvements.
but before posting I want you to know:
which is a complete, extensive project and I do not know how to catalog it in the world of programming.
So the first question is how to publish it to reach the goals described above.
<?php
class CORE {
public static $ObjClass;
public static $ObjClassP;
public static $ObjClassInst;
public static $ObjClassInstP;
public static $ObjSiS;
public function __construct() {
require_once 'const/Security.php';
require_once 'const/Constant.php';
require_once 'class/ClassManager.php';
$this->AUTOLOAD = new ClassManager();
$this->AUTOLOAD->LoadClass();
foreach (self::$ObjClass as $key => $Class) {
require_once $Class;
}
$this->AUTOLOAD->ClassPack();
self::$ObjClassInst['Generic']['APPMANAGER']->RunInit();
}
public function __destruct() {
self::$ObjClassInst['Generic']['APPMANAGER']->RunClose();
}
public function Main() {
self::$ObjClassInst['MVC']['CONTENTMANAGER']->GetContent();
}
}
php object-oriented modules
New contributor
I am reviewing my code publicly, looking for:
community evaluation.
Advice, Criticism, even improvements.
but before posting I want you to know:
which is a complete, extensive project and I do not know how to catalog it in the world of programming.
So the first question is how to publish it to reach the goals described above.
<?php
class CORE {
public static $ObjClass;
public static $ObjClassP;
public static $ObjClassInst;
public static $ObjClassInstP;
public static $ObjSiS;
public function __construct() {
require_once 'const/Security.php';
require_once 'const/Constant.php';
require_once 'class/ClassManager.php';
$this->AUTOLOAD = new ClassManager();
$this->AUTOLOAD->LoadClass();
foreach (self::$ObjClass as $key => $Class) {
require_once $Class;
}
$this->AUTOLOAD->ClassPack();
self::$ObjClassInst['Generic']['APPMANAGER']->RunInit();
}
public function __destruct() {
self::$ObjClassInst['Generic']['APPMANAGER']->RunClose();
}
public function Main() {
self::$ObjClassInst['MVC']['CONTENTMANAGER']->GetContent();
}
}
php object-oriented modules
php object-oriented modules
New contributor
New contributor
New contributor
asked Dec 29 '18 at 18:02
Francisco Núñez
932
932
New contributor
New contributor
closed as off-topic by Mast, 200_success, mdfst13, rolfl♦ Dec 29 '18 at 21:51
- This question does not appear to be a code review request within the scope defined in the help center. Please see the FAQ about off-topic questions.
If this question can be reworded to fit the rules in the help center, please edit the question.
closed as off-topic by Mast, 200_success, mdfst13, rolfl♦ Dec 29 '18 at 21:51
- This question does not appear to be a code review request within the scope defined in the help center. Please see the FAQ about off-topic questions.
If this question can be reworded to fit the rules in the help center, please edit the question.
I'm voting to close this question as off-topic because it is not about reviewing the code, but it is asking about how to ask a more in-detail question. Please just post the code you want reviewed. Note that on Code Review we don't provide feedback on the pro's and con's of different concepts or strategies that are not implemented in the code being reviewed.
– rolfl♦
Dec 29 '18 at 21:51
@rolf in stack exchange is there a page that can be placed questions like this?
– Francisco Núñez
2 days ago
add a comment |
I'm voting to close this question as off-topic because it is not about reviewing the code, but it is asking about how to ask a more in-detail question. Please just post the code you want reviewed. Note that on Code Review we don't provide feedback on the pro's and con's of different concepts or strategies that are not implemented in the code being reviewed.
– rolfl♦
Dec 29 '18 at 21:51
@rolf in stack exchange is there a page that can be placed questions like this?
– Francisco Núñez
2 days ago
I'm voting to close this question as off-topic because it is not about reviewing the code, but it is asking about how to ask a more in-detail question. Please just post the code you want reviewed. Note that on Code Review we don't provide feedback on the pro's and con's of different concepts or strategies that are not implemented in the code being reviewed.
– rolfl♦
Dec 29 '18 at 21:51
I'm voting to close this question as off-topic because it is not about reviewing the code, but it is asking about how to ask a more in-detail question. Please just post the code you want reviewed. Note that on Code Review we don't provide feedback on the pro's and con's of different concepts or strategies that are not implemented in the code being reviewed.
– rolfl♦
Dec 29 '18 at 21:51
@rolf in stack exchange is there a page that can be placed questions like this?
– Francisco Núñez
2 days ago
@rolf in stack exchange is there a page that can be placed questions like this?
– Francisco Núñez
2 days ago
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'm voting to close this question as off-topic because it is not about reviewing the code, but it is asking about how to ask a more in-detail question. Please just post the code you want reviewed. Note that on Code Review we don't provide feedback on the pro's and con's of different concepts or strategies that are not implemented in the code being reviewed.
– rolfl♦
Dec 29 '18 at 21:51
@rolf in stack exchange is there a page that can be placed questions like this?
– Francisco Núñez
2 days ago